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
"Tests/vscode:/vscode.git/clone" did not exist on "2cb11ac17ef6dcd8b28297c928683de666884e30"
Commit
167e2eff
authored
Nov 25, 2013
by
Tebjan Halm
Browse files
builds for .NET3.5 again
parent
54f84bf1
Changes
3
Show whitespace changes
Inline
Side-by-side
Source/Properties/AssemblyInfo.cs
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
)]
Source/Svg.csproj
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>
...
...
Source/SvgElement.cs
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
+
"/"
;
...
...
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