Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ImportedProjects
SVG
Commits
167e2eff
Commit
167e2eff
authored
11 years ago
by
Tebjan Halm
Browse files
Options
Download
Email Patches
Plain Diff
builds for .NET3.5 again
parent
54f84bf1
master
netstandard2
nuget2.4.2
nuget2.4.1
nuget2.4
nuget2.3
nuget2.2.2
nuget2.2.1
nuget1.7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Source/Properties/AssemblyInfo.cs
+1
-1
Source/Properties/AssemblyInfo.cs
Source/Svg.csproj
+1
-1
Source/Svg.csproj
Source/SvgElement.cs
+3
-3
Source/SvgElement.cs
with
5 additions
and
5 deletions
+5
-5
Source/Properties/AssemblyInfo.cs
+
1
-
1
View file @
167e2eff
...
@@ -32,7 +32,7 @@ using System.Runtime.InteropServices;
...
@@ -32,7 +32,7 @@ using System.Runtime.InteropServices;
//
//
// You can specify all the values or you can default the Revision and Build Numbers
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
// by using the '*' as shown below:
[
assembly
:
AssemblyVersion
(
"1.5.
1
.*"
)]
[
assembly
:
AssemblyVersion
(
"1.5.
2
.*"
)]
//[assembly: AssemblyFileVersion("1.0.1.*")]
//[assembly: AssemblyFileVersion("1.0.1.*")]
[
assembly
:
CLSCompliant
(
true
)]
[
assembly
:
CLSCompliant
(
true
)]
This diff is collapsed.
Click to expand it.
Source/Svg.csproj
+
1
-
1
View file @
167e2eff
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
<OldToolsVersion>
3.5
</OldToolsVersion>
<OldToolsVersion>
3.5
</OldToolsVersion>
<UpgradeBackupLocation>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
</UpgradeBackupLocation>
<TargetFrameworkVersion>
v
4.0
</TargetFrameworkVersion>
<TargetFrameworkVersion>
v
3.5
</TargetFrameworkVersion>
<IsWebBootstrapper>
false
</IsWebBootstrapper>
<IsWebBootstrapper>
false
</IsWebBootstrapper>
<SccProjectName>
<SccProjectName>
</SccProjectName>
</SccProjectName>
...
...
This diff is collapsed.
Click to expand it.
Source/SvgElement.cs
+
3
-
3
View file @
167e2eff
...
@@ -459,7 +459,7 @@ namespace Svg
...
@@ -459,7 +459,7 @@ namespace Svg
var
evt
=
attr
.
Event
.
GetValue
(
this
);
var
evt
=
attr
.
Event
.
GetValue
(
this
);
//if someone has registered publish the attribute
//if someone has registered publish the attribute
if
(
evt
!=
null
&&
!
string
.
IsNullOr
WhiteSpace
(
this
.
ID
))
if
(
evt
!=
null
&&
!
string
.
IsNullOr
Empty
(
this
.
ID
))
{
{
writer
.
WriteAttributeString
(
attr
.
Attribute
.
Name
,
this
.
ID
+
"/"
+
attr
.
Attribute
.
Name
);
writer
.
WriteAttributeString
(
attr
.
Attribute
.
Name
,
this
.
ID
+
"/"
+
attr
.
Attribute
.
Name
);
}
}
...
@@ -727,7 +727,7 @@ namespace Svg
...
@@ -727,7 +727,7 @@ namespace Svg
/// <param name="caller"></param>
/// <param name="caller"></param>
public
void
RegisterEvents
(
ISvgEventCaller
caller
)
public
void
RegisterEvents
(
ISvgEventCaller
caller
)
{
{
if
(
caller
!=
null
&&
!
string
.
IsNullOr
WhiteSpace
(
this
.
ID
))
if
(
caller
!=
null
&&
!
string
.
IsNullOr
Empty
(
this
.
ID
))
{
{
var
rpcID
=
this
.
ID
+
"/"
;
var
rpcID
=
this
.
ID
+
"/"
;
...
@@ -747,7 +747,7 @@ namespace Svg
...
@@ -747,7 +747,7 @@ namespace Svg
/// <param name="caller"></param>
/// <param name="caller"></param>
public
void
UnregisterEvents
(
ISvgEventCaller
caller
)
public
void
UnregisterEvents
(
ISvgEventCaller
caller
)
{
{
if
(
caller
!=
null
&&
!
string
.
IsNullOr
WhiteSpace
(
this
.
ID
))
if
(
caller
!=
null
&&
!
string
.
IsNullOr
Empty
(
this
.
ID
))
{
{
var
rpcID
=
this
.
ID
+
"/"
;
var
rpcID
=
this
.
ID
+
"/"
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help