mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-12 07:22:28 +08:00
46 lines
1.3 KiB
XML
46 lines
1.3 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|||
|
<UseWPF>true</UseWPF>
|
|||
|
<Platforms>x64</Platforms>
|
|||
|
<PlatformTarget>x64</PlatformTarget>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="ControlzEx" Version="4.4.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0">
|
|||
|
<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>
|