2020-07-10 04:14:53 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
|
|
<Platforms>x64</Platforms>
|
2020-07-11 04:43:02 +08:00
|
|
|
|
|
|
|
<ApplicationManifest>AppxManifests\developmentApp\AppxManifest.xml</ApplicationManifest>
|
2020-07-10 04:14:53 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2020-08-13 01:03:34 +08:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2020-07-10 04:14:53 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-08-13 01:03:34 +08:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
2020-07-10 04:14:53 +08:00
|
|
|
<ItemGroup>
|
2020-08-13 01:03:34 +08:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2020-07-23 00:46:20 +08:00
|
|
|
<PackageReference Include="Moq" Version="4.14.5" />
|
2020-07-10 04:14:53 +08:00
|
|
|
<PackageReference Include="nunit" Version="3.12.0" />
|
2020-07-23 00:46:20 +08:00
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
|
2020-07-10 04:14:53 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Microsoft.Plugin.Program\Microsoft.Plugin.Program.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2020-07-11 04:43:02 +08: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-07-10 04:14:53 +08:00
|
|
|
</Project>
|