2021-07-28 14:15:47 +03:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-06-09 10:46:19 +01:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-02-07 06:08:30 -08:00
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
2021-06-09 10:46:19 +01:00
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AdditionalFiles Include="..\..\..\..\codeAnalysis\StyleCop.json" Link="StyleCop.json" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\..\..\..\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-02-14 18:53:15 +01:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
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" />
|
2021-06-09 10:46:19 +01:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Community.PowerToys.Run.Plugin.UnitConverter\Community.PowerToys.Run.Plugin.UnitConverter.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|