2022-01-18 22:52:22 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-02-10 21:10:42 +08:00
|
|
|
|
<Import Project="..\..\Version.props" />
|
|
|
|
|
|
2021-01-05 22:54:32 +08:00
|
|
|
|
<PropertyGroup>
|
2022-02-07 22:08:30 +08:00
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
2021-01-05 22:54:32 +08:00
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2021-12-15 19:56:52 +08:00
|
|
|
|
<AssemblyName>PowerToys.Common.UI</AssemblyName>
|
2021-01-05 22:54:32 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-02-08 03:16:36 +08:00
|
|
|
|
<PackageReference Include="ControlzEx" Version="5.0.1" />
|
2021-01-05 22:54:32 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-02-12 00:42:17 +08:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
|
2021-01-05 22:54:32 +08:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="StyleCop.Analyzers">
|
|
|
|
|
<Version>1.1.118</Version>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AdditionalFiles Include="..\..\codeAnalysis\StyleCop.json">
|
|
|
|
|
<Link>StyleCop.json</Link>
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\..\codeAnalysis\GlobalSuppressions.cs">
|
|
|
|
|
<Link>GlobalSuppressions.cs</Link>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\ManagedCommon\ManagedCommon.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|