2020-11-26 03:35:48 -06:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-02-07 06:08:30 -08:00
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2021-01-08 16:11:30 +01:00
|
|
|
|
<RootNamespace>Microsoft.PowerToys.Run.Plugin.System.UnitTests</RootNamespace>
|
2020-11-26 03:35:48 -06:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-03-30 09:52:00 -07:00
|
|
|
|
<PackageReference Include="Moq" Version="4.16.1" />
|
2022-02-18 15:19:40 +01:00
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
2022-06-28 14:30:03 +01:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-01-08 16:11:30 +01:00
|
|
|
|
<ProjectReference Include="..\Microsoft.PowerToys.Run.Plugin.System\Microsoft.PowerToys.Run.Plugin.System.csproj" />
|
2020-11-26 03:35:48 -06: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">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
2022-02-11 17:42:17 +01:00
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
2020-11-26 03:35:48 -06:00
|
|
|
|
</PackageReference>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|