2020-08-11 00:53:43 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-01-18 15:52:22 +01:00
|
|
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
2020-08-11 00:53:43 +02:00
|
|
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
|
<RootNamespace>Microsoft.Plugin.Uri.UnitTests</RootNamespace>
|
2020-08-17 13:11:40 -07:00
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2020-08-11 00:53:43 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-08-16 15:25:06 +02:00
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.5" />
|
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.5" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
|
2020-08-11 00:53:43 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Microsoft.Plugin.Uri\Microsoft.Plugin.Uri.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2020-08-11 16:35:58 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\..\..\..\codeAnalysis\GlobalSuppressions.cs">
|
|
|
|
|
|
<Link>GlobalSuppressions.cs</Link>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
<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>
|
2020-10-26 16:15:05 -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-08-11 16:35:58 -07:00
|
|
|
|
</ItemGroup>
|
2020-08-11 00:53:43 +02:00
|
|
|
|
</Project>
|