2020-04-09 04:53:09 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-25 10:55:02 +08:00
|
|
|
|
|
2020-08-05 15:04:18 +08:00
|
|
|
|
<Import Project="..\..\Version.props" />
|
2020-06-22 17:14:00 +08:00
|
|
|
|
|
2020-03-25 10:55:02 +08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2020-08-18 02:17:16 +08:00
|
|
|
|
<Platforms>x64</Platforms>
|
2020-06-22 17:14:00 +08:00
|
|
|
|
<Version>$(Version).0</Version>
|
2020-06-23 21:47:07 +08:00
|
|
|
|
<Authors>Microsoft Corporation</Authors>
|
|
|
|
|
<Product>PowerToys</Product>
|
|
|
|
|
<Description>PowerToys Settings UI Lib</Description>
|
|
|
|
|
<Copyright>Copyright (C) 2020 Microsoft Corporation</Copyright>
|
|
|
|
|
<RepositoryUrl>https://github.com/microsoft/PowerToys</RepositoryUrl>
|
|
|
|
|
<RepositoryType>Github</RepositoryType>
|
|
|
|
|
<PackageTags>PowerToys</PackageTags>
|
|
|
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
2020-08-20 06:59:10 +08:00
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2020-04-09 04:53:09 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2020-03-25 10:55:02 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
<AdditionalFiles Include="..\..\codeAnalysis\StyleCop.json" Link="StyleCop.json">
|
|
|
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-04-11 06:22:07 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\..\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-04-08 01:19:14 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2020-05-26 22:42:04 +08:00
|
|
|
|
<PackageReference Include="System.Text.Json" Version="4.7.2" />
|
2020-03-25 10:55:02 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-04-21 12:01:21 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\common\interop\interop.vcxproj" />
|
2020-05-06 02:44:54 +08:00
|
|
|
|
<ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\Telemetry.csproj" />
|
2020-04-21 12:01:21 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-03-25 10:55:02 +08:00
|
|
|
|
</Project>
|