2021-10-05 00:45:41 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-02-07 06:08:30 -08:00
|
|
|
<TargetFramework>net6.0-windows10.0.18362.0</TargetFramework>
|
2021-10-05 00:45:41 +02:00
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-02-18 15:19:40 +01:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
|
2022-01-18 15:52:22 +01:00
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
2021-10-05 00:45:41 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\..\..\..\codeAnalysis\GlobalSuppressions.cs">
|
|
|
|
|
<Link>GlobalSuppressions.cs</Link>
|
|
|
|
|
</Compile>
|
|
|
|
|
<AdditionalFiles Include="..\..\..\..\codeAnalysis\StyleCop.json">
|
|
|
|
|
<Link>StyleCop.json</Link>
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-02-11 17:42:17 +01:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
|
2021-10-05 00:45:41 +02:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Microsoft.PowerToys.Run.Plugin.WindowsTerminal\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="settings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|