Skip to content

Commit

Permalink
New SvgGraphics constructor accepting a background color
Browse files Browse the repository at this point in the history
Better HatchStyle.DiagonalBrick details
Don't add ViewBox if you want patternContentUnits to work
More C# 6 goodies
  • Loading branch information
monoman committed Jan 5, 2017
1 parent 497e2a0 commit ee685bd
Show file tree
Hide file tree
Showing 20 changed files with 5,082 additions and 4,966 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ obj/
*.pidb
*.nupkg
test-results/


/packages/
8 changes: 7 additions & 1 deletion SvgDocTest/SvgDocTest.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProductVersion>8.0.30319</ProductVersion>
Expand All @@ -23,6 +23,7 @@
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<OldToolsVersion>0.0</OldToolsVersion>
<UpgradeBackupLocation />
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>bin\Debug\</OutputPath>
Expand All @@ -42,6 +43,7 @@
<DebugType>full</DebugType>
<ErrorReport>prompt</ErrorReport>
<NoWarn>CS1591</NoWarn>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release\</OutputPath>
Expand All @@ -61,6 +63,7 @@
<DebugType>none</DebugType>
<ErrorReport>prompt</ErrorReport>
<NoWarn>CS1591</NoWarn>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SvgNet\SvgNet.csproj">
Expand Down Expand Up @@ -96,6 +99,9 @@
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent />
Expand Down
3 changes: 3 additions & 0 deletions SvgDocTest/app.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
Loading

0 comments on commit ee685bd

Please sign in to comment.