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>
|
2020-10-23 00:45:48 +08:00
|
|
|
|
<Description>PowerToys Settings UI Library</Description>
|
2020-06-23 21:47:07 +08:00
|
|
|
|
<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-10-23 00:45:48 +08:00
|
|
|
|
<AssemblyName>Microsoft.PowerToys.Settings.UI.Lib</AssemblyName>
|
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-11-03 01:33:43 +08:00
|
|
|
|
<PackageReference Include="System.IO.Abstractions" Version="12.2.5" />
|
2021-04-16 02:41:11 +08:00
|
|
|
|
<PackageReference Include="System.Text.Json" Version="5.0.2" />
|
2020-10-23 00:45:48 +08:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers">
|
|
|
|
|
<Version>3.3.0</Version>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2020-03-25 10:55:02 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-04-21 12:01:21 +08:00
|
|
|
|
<ItemGroup>
|
2020-12-15 20:16:09 +08:00
|
|
|
|
<ProjectReference Include="..\..\common\interop\PowerToysInterop.vcxproj" />
|
2020-10-24 06:05:07 +08:00
|
|
|
|
<ProjectReference Include="..\..\common\ManagedCommon\ManagedCommon.csproj" />
|
2020-12-15 20:16:09 +08:00
|
|
|
|
<ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" />
|
2020-04-21 12:01:21 +08:00
|
|
|
|
</ItemGroup>
|
2020-03-25 10:55:02 +08:00
|
|
|
|
</Project>
|