2020-04-09 04:53:09 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-25 10:55:02 +08:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2020-04-09 04:53:09 +08:00
|
|
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
|
|
|
</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-04-27 07:44:14 +08:00
|
|
|
|
<PackageReference Include="System.Text.Json" Version="4.7.0" />
|
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>
|