2020-12-15 15:16:09 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<Import Project="..\..\..\Version.props" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
|
<Version>$(Version).0</Version>
|
|
|
|
|
<Authors>Microsoft Corporation</Authors>
|
|
|
|
|
<Product>PowerToys</Product>
|
|
|
|
|
<Description>PowerToys Telemetry</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>
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\..\Telemetry\TelemetryBase.cs" Link="TelemetryBase.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AdditionalFiles Include="..\..\..\codeAnalysis\StyleCop.json">
|
|
|
|
|
<Link>StyleCop.json</Link>
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
</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>
|
|
|
|
|
<Compile Include="..\..\..\codeAnalysis\GlobalSuppressions.cs">
|
|
|
|
|
<Link>GlobalSuppressions.cs</Link>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|