mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1022 B
26 lines
1022 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net46</TargetFramework>
|
|
<RuntimeIdentifier>win7-x64</RuntimeIdentifier>
|
|
<DebugType>portable</DebugType>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<AssemblyName>build</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<PackageId>build</PackageId>
|
|
<CodeAnalysisRuleSet>..\ImageSharp.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="..\src\Shared\stylecop.json" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Build" Version="15.1.0-preview-000523-01" />
|
|
<PackageReference Include="LibGit2Sharp" Version="0.23.0" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta001">
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
|
|
<Reference Include="System" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
</Project>
|