Skip to content

Commit ee685bd

Browse files
committed
New SvgGraphics constructor accepting a background color
Better HatchStyle.DiagonalBrick details Don't add ViewBox if you want patternContentUnits to work More C# 6 goodies
1 parent 497e2a0 commit ee685bd

20 files changed

+5082
-4966
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@ obj/
77
*.pidb
88
*.nupkg
99
test-results/
10-
11-
10+
/packages/

SvgDocTest/SvgDocTest.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
33
<PropertyGroup>
44
<ProjectType>Local</ProjectType>
55
<ProductVersion>8.0.30319</ProductVersion>
@@ -23,6 +23,7 @@
2323
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
2424
<OldToolsVersion>0.0</OldToolsVersion>
2525
<UpgradeBackupLocation />
26+
<TargetFrameworkProfile />
2627
</PropertyGroup>
2728
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2829
<OutputPath>bin\Debug\</OutputPath>
@@ -42,6 +43,7 @@
4243
<DebugType>full</DebugType>
4344
<ErrorReport>prompt</ErrorReport>
4445
<NoWarn>CS1591</NoWarn>
46+
<Prefer32Bit>false</Prefer32Bit>
4547
</PropertyGroup>
4648
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4749
<OutputPath>bin\Release\</OutputPath>
@@ -61,6 +63,7 @@
6163
<DebugType>none</DebugType>
6264
<ErrorReport>prompt</ErrorReport>
6365
<NoWarn>CS1591</NoWarn>
66+
<Prefer32Bit>false</Prefer32Bit>
6467
</PropertyGroup>
6568
<ItemGroup>
6669
<ProjectReference Include="..\SvgNet\SvgNet.csproj">
@@ -96,6 +99,9 @@
9699
<DependentUpon>Form1.cs</DependentUpon>
97100
</EmbeddedResource>
98101
</ItemGroup>
102+
<ItemGroup>
103+
<None Include="app.config" />
104+
</ItemGroup>
99105
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
100106
<PropertyGroup>
101107
<PreBuildEvent />

SvgDocTest/app.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>

0 commit comments

Comments
 (0)