2020-12-10 14:11:14 +07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-12-15 15:16:09 +03:00
|
|
|
|
<Import Project="..\..\..\Version.props" />
|
2020-12-10 14:11:14 +07:00
|
|
|
|
|
2020-07-30 12:22:33 -07:00
|
|
|
|
<PropertyGroup>
|
2022-02-07 06:08:30 -08:00
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
|
|
|
|
|
|
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
|
|
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
|
<AssemblyTitle>interop-tests</AssemblyTitle>
|
|
|
|
|
|
<Company>Microsoft Corp.</Company>
|
|
|
|
|
|
<Copyright>Copyright (C) 2020 Microsoft Corp.</Copyright>
|
2020-07-30 12:22:33 -07:00
|
|
|
|
</PropertyGroup>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
|
2020-07-30 12:22:33 -07:00
|
|
|
|
<PropertyGroup>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
2020-08-17 13:11:40 -07:00
|
|
|
|
</PropertyGroup>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<RootNamespace>Microsoft.Interop.Tests</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Microsoft.Interop.Tests</AssemblyName>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
|
|
|
|
<OutputPath>bin\x64\Release\</OutputPath>
|
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-08-16 15:25:06 +02:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
|
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.5" />
|
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.5" />
|
2021-03-30 09:52:00 -07:00
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.0.3">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-07-30 12:22:33 -07:00
|
|
|
|
<ItemGroup>
|
2022-02-11 17:42:17 +01:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
<PackageReference Include="StyleCop.Analyzers">
|
|
|
|
|
|
<Version>1.1.118</Version>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
</PackageReference>
|
2020-07-30 12:22:33 -07:00
|
|
|
|
</ItemGroup>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
|
2020-07-30 12:22:33 -07:00
|
|
|
|
<ItemGroup>
|
2020-12-15 15:16:09 +03:00
|
|
|
|
<Compile Include="..\..\..\codeAnalysis\GlobalSuppressions.cs">
|
2020-07-30 12:22:33 -07:00
|
|
|
|
<Link>GlobalSuppressions.cs</Link>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
</Compile>
|
2020-12-15 15:16:09 +03:00
|
|
|
|
<AdditionalFiles Include="..\..\..\codeAnalysis\StyleCop.json">
|
2020-12-10 14:11:14 +07:00
|
|
|
|
<Link>StyleCop.json</Link>
|
|
|
|
|
|
</AdditionalFiles>
|
2020-07-30 12:22:33 -07:00
|
|
|
|
</ItemGroup>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
|
2020-07-30 12:22:33 -07:00
|
|
|
|
<ItemGroup>
|
2021-12-06 16:27:54 +01:00
|
|
|
|
<ProjectReference Include="..\PowerToys.Interop.vcxproj" />
|
2020-07-30 12:22:33 -07:00
|
|
|
|
</ItemGroup>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
|
|
|
|
|
|
</Project>
|