2018-09-10 20:17:35 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2018-09-05 23:51:28 +00:00
|
|
|
|
<PropertyGroup>
|
2018-09-11 17:03:48 +00:00
|
|
|
|
<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>
|
|
|
|
|
|
2018-09-11 06:37:41 +00:00
|
|
|
|
<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
|
|
|
|
|
2018-09-11 17:03:48 +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-13 07:30:03 +00:00
|
|
|
|
<!-- Required or no tests will be found when run from the command line using dotnet test -->
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" 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>
|