2020-08-13 15:31:32 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-07-09 13:14:53 -07:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
|
|
|
|
|
|
<Platforms>x64</Platforms>
|
2020-07-10 13:43:02 -07:00
|
|
|
|
|
|
|
|
|
|
<ApplicationManifest>AppxManifests\developmentApp\AppxManifest.xml</ApplicationManifest>
|
2020-07-09 13:14:53 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2020-08-12 10:03:34 -07:00
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2020-07-09 13:14:53 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2020-08-12 10:03:34 -07:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-07-09 13:14:53 -07:00
|
|
|
|
<ItemGroup>
|
2020-08-12 10:03:34 -07:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2020-10-28 12:24:42 -07:00
|
|
|
|
<PackageReference Include="Moq" Version="4.14.7" />
|
2020-07-09 13:14:53 -07:00
|
|
|
|
<PackageReference Include="nunit" Version="3.12.0" />
|
2020-07-22 09:46:20 -07:00
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
|
2020-08-21 12:40:31 -07:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
|
2020-07-09 13:14:53 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Microsoft.Plugin.Program\Microsoft.Plugin.Program.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-07-10 13:43:02 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="AppxManifests\DevelopmentApp\AppxManifest.xml">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="AppxManifests\FrameworkApp\AppxManifest.xml">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="AppxManifests\PackagedApp\AppxManifest.xml">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
2020-08-13 15:31:32 -07:00
|
|
|
|
<ItemGroup>
|
2020-08-12 11:46:11 -07:00
|
|
|
|
<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-08-13 15:31:32 -07:00
|
|
|
|
</ItemGroup>
|
2020-07-09 13:14:53 -07:00
|
|
|
|
</Project>
|