2020-08-13 13:51:01 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2020-08-17 20:17:16 +02:00
|
|
|
<Platforms>x64</Platforms>
|
2020-08-19 15:59:10 -07:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2020-08-13 13:51:01 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
<OutputPath>..\..\..\x64\Debug\SettingsTests\</OutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
<OutputPath>..\..\..\x64\Release\SettingsTest\</OutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-08-21 12:40:31 -07:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
|
2020-08-13 13:51:01 -07:00
|
|
|
<PackageReference Include="coverlet.collector" Version="1.2.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Microsoft.PowerToys.Settings.UI.Lib\Microsoft.PowerToys.Settings.UI.Lib.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|