mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
52 lines
2.1 KiB
XML
52 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<Platforms>x64</Platforms>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</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>
|
|
<Compile Include="..\..\codeAnalysis\GlobalSuppressions.cs">
|
|
<Link>GlobalSuppressions.cs</Link>
|
|
</Compile>
|
|
<AdditionalFiles Include="..\..\codeAnalysis\StyleCop.json">
|
|
<Link>StyleCop.json</Link>
|
|
</AdditionalFiles>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<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">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers">
|
|
<Version>3.3.0</Version>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="12.2.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.PowerToys.Settings.UI.Library\Microsoft.PowerToys.Settings.UI.Library.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|