mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
18 lines
609 B
XML
18 lines
609 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<StartupObject>csharpcore.Program</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
|
|
<PackageReference Include="xunit" Version="2.3.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<None Update="ThirtyDays.txt" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
</Project>
|