iced/Iced.UnitTests/Iced.UnitTests.csproj

46 lines
1.4 KiB
XML
Raw Normal View History

2018-09-10 20:17:35 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2018-09-05 23:51:28 +00:00
<PropertyGroup>
<TargetFramework>net471</TargetFramework>
2018-09-10 20:17:35 +00:00
<IsPackable>false</IsPackable>
<Copyright>Copyright (C) 2018 de4dot@gmail.com</Copyright>
2018-09-12 21:31:28 +00:00
<LangVersion>latest</LangVersion>
2018-09-10 20:17:35 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Features>strict</Features>
2018-09-06 18:56:52 +00:00
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\Iced.snk</AssemblyOriginatorKeyFile>
2018-09-05 23:51:28 +00:00
</PropertyGroup>
2018-09-10 20:17:35 +00:00
2018-09-12 21:31:28 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
2018-09-05 23:51:28 +00:00
<ItemGroup>
2018-09-10 20:17:35 +00:00
<Content Include="Intel\**\*.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2018-09-05 23:51:28 +00:00
</ItemGroup>
2018-09-10 20:17:35 +00:00
<ItemGroup>
<Content Include="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2018-09-05 23:51:28 +00:00
<ItemGroup>
2018-09-10 20:17:35 +00:00
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
2018-09-12 21:25:43 +00:00
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.console" Version="2.4.0" />
2018-09-05 23:51:28 +00:00
</ItemGroup>
2018-09-10 20:17:35 +00:00
2018-09-05 23:57:40 +00:00
<ItemGroup>
2018-09-10 20:17:35 +00:00
<ProjectReference Include="..\Iced\Iced.csproj" />
2018-09-05 23:57:40 +00:00
</ItemGroup>
2018-09-10 20:17:35 +00:00
</Project>