2020-04-08 13:53:09 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-24 19:55:02 -07:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2020-04-08 13:53:09 -07: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-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-03-24 19:55:02 -07:00
|
|
|
|
<PackageReference Include="System.Text.Json" Version="4.7.1" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-04-20 21:01:21 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\common\interop\interop.vcxproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-03-24 19:55:02 -07:00
|
|
|
|
</Project>
|