Skip to content

Commit 46aee15

Browse files
committed
Adding Nuget packages
- Removed System.Data from references - Adding nuget pack
1 parent 8b12573 commit 46aee15

10 files changed

+32
-19
lines changed

Images/SharpVectors64.png

4.92 KB
Loading

Output/SharpVectors.Core.dll

4 KB
Binary file not shown.

Output/SharpVectors.Dom.dll

0 Bytes
Binary file not shown.

Output/SharpVectors.Runtime.Wpf.dll

512 Bytes
Binary file not shown.

Source/SharpVectorCore/SharpVectors.Core.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,6 @@
9595
<Reference Include="System">
9696
<Name>System</Name>
9797
</Reference>
98-
<Reference Include="System.Data">
99-
<Name>System.Data</Name>
100-
</Reference>
10198
<Reference Include="System.Web" />
10299
<Reference Include="System.XML" />
103100
</ItemGroup>

Source/SharpVectorCss/SharpVectors.Css.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,6 @@
9595
<Reference Include="System">
9696
<Name>System</Name>
9797
</Reference>
98-
<Reference Include="System.Data">
99-
<Name>System.Data</Name>
100-
</Reference>
10198
<Reference Include="System.Xml">
10299
<Name>System.XML</Name>
103100
</Reference>

Source/SharpVectorDom/SharpVectors.Dom.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,6 @@
9595
<Reference Include="System">
9696
<Name>System</Name>
9797
</Reference>
98-
<Reference Include="System.Data">
99-
<Name>System.Data</Name>
100-
</Reference>
10198
<Reference Include="System.Xml">
10299
<Name>System.XML</Name>
103100
</Reference>

Source/SharpVectorModel/SharpVectors.Model.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,6 @@
9696
<Reference Include="System">
9797
<Name>System</Name>
9898
</Reference>
99-
<Reference Include="System.Data">
100-
<Name>System.Data</Name>
101-
</Reference>
10299
<Reference Include="System.Xml">
103100
<Name>System.XML</Name>
104101
</Reference>

Source/SharpVectorRenderingGdi/SharpVectors.Rendering.Gdi.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,6 @@
9393
<Reference Include="System">
9494
<Name>System</Name>
9595
</Reference>
96-
<Reference Include="System.Data">
97-
<Name>System.Data</Name>
98-
</Reference>
9996
<Reference Include="System.Drawing">
10097
<Name>System.Drawing</Name>
10198
</Reference>

Source/SharpVectors.nuspec

+32-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,41 @@
11
<?xml version="1.0"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
3-
<metadata minClientVersion="2.5">
3+
<metadata minClientVersion="2.8">
44
<id>SharpVectors.Reloaded</id>
55
<version>$version$</version>
66
<title>SharpVectors</title>
77
<authors>Elinam LLC (Japan)</authors>
88
<owners>SharpVectors Team</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1010
<description>A library for parsing, converting and viewing SVG files in WPF and WinForms applications.</description>
11-
<licenseUrl>https://github.com/ElinamLLC/SharpVectors/blob/master/License.md</licenseUrl>
11+
<license type="expression">BSD-3-Clause</license>
1212
<projectUrl>https://github.com/ElinamLLC/SharpVectors</projectUrl>
13-
<iconUrl>https://github.com/ElinamLLC/SharpVectors/blob/master/Images/SharpVectors.png?raw=true</iconUrl>
14-
<copyright>Copyright (c) 2010 - 2018 Elinam LLC</copyright>
13+
<icon>images\SharpVectors64.png</icon>
14+
<copyright>Copyright (c) 2010 - 2019 Elinam LLC</copyright>
1515
<releaseNotes>
16+
Release 1.4.0
17+
* Design time update to SvgImage and SvgImageConverter.
18+
* Adding support for href in addition to the xlink:href (as in SVG 2)
19+
* Improvements in the WPF runtime library
20+
- ZoomPanControl is updated to the latest version
21+
- SvgImage renamed to SvgImageNameScope (not SvgImageExtension in converter library)
22+
* GDI+ Rendering: Resumed the developments of this renderer
23+
- Code Refactoring, improvements and bug fixes
24+
- Improvements in the SvgPictureBox control
25+
* WPF Rendering: Initial support for SVG fonts
26+
* New Points and Path Parsers (based on Batik path parsing)
27+
- Introduced new points and paths parser for better error handling
28+
- Removed the fallback for the WPF PathGeometry parser
29+
* Introduced WpfDrawingDocument to manage drawing information
30+
- This will simply the search for ID and provide hit-testing
31+
- This preserves the format of the SVG ID, x:Name must comply to variable naming
32+
* Introduced EmbeddedImageSerializerVisitor to serialize embedded images to file, where required
33+
* Improved color syntax support
34+
- Support for all color syntaxes: rgb, rgba, hsl, hsla
35+
- Fixed the reported issues #99, #112
36+
* Issue #111: Trim for quotes to ResolveUri methods (fixed by @mmatriccino)
37+
* Several bug fixes and code improvements
38+
1639
Release 1.3.0
1740
* Support for fallback paint server.
1841
* Issue #81: Mouse Click on DOM Element.
@@ -44,6 +67,9 @@
4467
* Added marker support.
4568
</releaseNotes>
4669
<tags>svg .net wpf svg2xaml svg2wpf xaml</tags>
70+
<dependencies>
71+
<group targetFramework=".NETFramework4.0" />
72+
</dependencies>
4773
</metadata>
4874
<files>
4975
<file src="..\Output\SharpVectors.Converters.Wpf.dll" target="lib\net40"/>
@@ -63,5 +89,7 @@
6389
<file src="..\Output\SharpVectors.Rendering.Gdi.xml" target="lib\net40"/>
6490
<file src="..\Output\SharpVectors.Rendering.Wpf.xml" target="lib\net40"/>
6591
<file src="..\Output\SharpVectors.Runtime.Wpf.xml" target="lib\net40"/>
92+
93+
<file src="..\Images\SharpVectors64.png" target="images"/>
6694
</files>
6795
</package>

0 commit comments

Comments
 (0)