2020-04-08 13:53:09 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-24 19:55:02 -07:00
|
|
|
|
|
2020-08-05 00:04:18 -07:00
|
|
|
|
<Import Project="..\..\Version.props" />
|
2020-06-22 12:14:00 +03:00
|
|
|
|
|
2020-03-24 19:55:02 -07:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2020-08-17 20:17:16 +02:00
|
|
|
|
<Platforms>x64</Platforms>
|
2020-06-22 12:14:00 +03:00
|
|
|
|
<Version>$(Version).0</Version>
|
2020-06-23 16:47:07 +03:00
|
|
|
|
<Authors>Microsoft Corporation</Authors>
|
|
|
|
|
|
<Product>PowerToys</Product>
|
2020-10-22 09:45:48 -07:00
|
|
|
|
<Description>PowerToys Settings UI Library</Description>
|
2020-06-23 16:47:07 +03: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-19 15:59:10 -07:00
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2020-10-22 09:45:48 -07:00
|
|
|
|
<AssemblyName>Microsoft.PowerToys.Settings.UI.Lib</AssemblyName>
|
2020-04-08 13:53:09 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2020-03-24 19:55:02 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-04-07 10:19:14 -07:00
|
|
|
|
<AdditionalFiles Include="..\..\codeAnalysis\StyleCop.json" Link="StyleCop.json">
|
|
|
|
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-04-10 15:22:07 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\..\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-04-07 10:19:14 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2020-11-02 18:33:43 +01:00
|
|
|
|
<PackageReference Include="System.IO.Abstractions" Version="12.2.5" />
|
2020-05-26 07:42:04 -07:00
|
|
|
|
<PackageReference Include="System.Text.Json" Version="4.7.2" />
|
2020-10-22 09:45:48 -07: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-24 19:55:02 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-04-20 21:01:21 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\common\interop\interop.vcxproj" />
|
2020-10-24 00:05:07 +02:00
|
|
|
|
<ProjectReference Include="..\..\common\ManagedCommon\ManagedCommon.csproj" />
|
2020-05-05 11:44:54 -07:00
|
|
|
|
<ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\Telemetry.csproj" />
|
2020-04-20 21:01:21 -07:00
|
|
|
|
</ItemGroup>
|
2020-03-24 19:55:02 -07:00
|
|
|
|
</Project>
|