2021-05-12 11:22:34 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-08-13 13:51:01 -07:00
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
2020-11-17 15:29:21 -08:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\..\codeAnalysis\GlobalSuppressions.cs">
|
|
|
|
|
<Link>GlobalSuppressions.cs</Link>
|
|
|
|
|
</Compile>
|
|
|
|
|
<AdditionalFiles Include="..\..\codeAnalysis\StyleCop.json">
|
|
|
|
|
<Link>StyleCop.json</Link>
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
</ItemGroup>
|
2020-08-13 13:51:01 -07:00
|
|
|
<ItemGroup>
|
2021-03-30 09:52:00 -07:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
|
|
|
|
|
<PackageReference Include="Moq" Version="4.16.1" />
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.0.3">
|
2020-09-16 12:24:21 -07:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2020-10-06 15:00:25 -07:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers">
|
|
|
|
|
<Version>3.3.0</Version>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2020-11-17 15:29:21 -08:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2020-11-02 18:33:43 +01:00
|
|
|
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="12.2.3" />
|
2020-08-13 13:51:01 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-10-22 09:45:48 -07:00
|
|
|
<ProjectReference Include="..\Microsoft.PowerToys.Settings.UI.Library\Microsoft.PowerToys.Settings.UI.Library.csproj" />
|
2020-08-13 13:51:01 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|