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.
35 lines
1.6 KiB
35 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net461</TargetFramework>
|
|
<RuntimeIdentifier>win7-x64</RuntimeIdentifier>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
<AssemblyName>ImageSharp.Sandbox46</AssemblyName>
|
|
<Description>A cross-platform library for processing of image files written in C#</Description>
|
|
<Copyright>Copyright © James Jackson-South and contributors.</Copyright>
|
|
<Authors>James Jackson-South and contributors</Authors>
|
|
<Company>James Jackson-South</Company>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\ImageSharp.Drawing\ImageSharp.Drawing.csproj" />
|
|
<ProjectReference Include="..\..\src\ImageSharp\ImageSharp.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<!--<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />-->
|
|
<PackageReference Include="Moq" Version="4.7.1" />
|
|
<PackageReference Include="xunit" Version="2.3.0-beta4-build3742" />
|
|
<!--<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />-->
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="..\ImageSharp.Tests\**\*.cs" Exclude="bin\**;obj\**" Link="Tests\%(RecursiveDir)%(Filename)%(Extension)" />
|
|
<Compile Remove="..\ImageSharp.Tests\obj\**\*.cs" />
|
|
<Compile Remove="..\ImageSharp.Tests\bin\**\*.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
|
|
</ItemGroup>
|
|
</Project>
|