Skip to content
GitLab
Menu
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
Nov 25, 2013
by
Tebjan Halm
Browse files
builds for .NET3.5 again
parent
54f84bf1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Source/Properties/AssemblyInfo.cs
View file @
167e2eff
...
...
@@ -32,7 +32,7 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[
assembly
:
AssemblyVersion
(
"1.5.
1
.*"
)]
[
assembly
:
AssemblyVersion
(
"1.5.
2
.*"
)]
//[assembly: AssemblyFileVersion("1.0.1.*")]
[
assembly
:
CLSCompliant
(
true
)]
Source/Svg.csproj
View file @
167e2eff
...
...
@@ -16,7 +16,7 @@
<OldToolsVersion>
3.5
</OldToolsVersion>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<TargetFrameworkVersion>
v
4.0
</TargetFrameworkVersion>
<TargetFrameworkVersion>
v
3.5
</TargetFrameworkVersion>
<IsWebBootstrapper>
false
</IsWebBootstrapper>
<SccProjectName>
</SccProjectName>
...
...
Source/SvgElement.cs
View file @
167e2eff
...
...
@@ -459,7 +459,7 @@ namespace Svg
var
evt
=
attr
.
Event
.
GetValue
(
this
);
//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
);
}
...
...
@@ -727,7 +727,7 @@ namespace Svg
/// <param name="caller"></param>
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
+
"/"
;
...
...
@@ -747,7 +747,7 @@ namespace Svg
/// <param name="caller"></param>
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
+
"/"
;
...
...
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