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-12-01 09:40:41 -05:00
|
|
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
|
2022-04-19 18:24:58 -04:00
|
|
|
|
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
|
2022-03-21 13:48:52 +01:00
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<RootNamespace>Microsoft.Interop.Tests</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Microsoft.Interop.Tests</AssemblyName>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
<AssemblyTitle>interop-tests</AssemblyTitle>
|
2020-08-17 13:11:40 -07:00
|
|
|
|
</PropertyGroup>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
|
2022-03-21 13:48:52 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2022-04-19 18:24:58 -04:00
|
|
|
|
<OutputPath>bin\$(Platform)\Debug\</OutputPath>
|
2022-03-21 13:48:52 +01:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
</PropertyGroup>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
|
2022-03-21 13:48:52 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
2022-04-19 18:24:58 -04:00
|
|
|
|
<OutputPath>bin\$(Platform)\Release\</OutputPath>
|
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<OutputPath>bin\$(Platform)\Debug\</OutputPath>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM64'">
|
|
|
|
|
|
<OutputPath>bin\$(Platform)\Release\</OutputPath>
|
2022-03-21 13:48:52 +01:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
</PropertyGroup>
|
2020-12-10 14:11:14 +07:00
|
|
|
|
|
2022-03-21 13:48:52 +01:00
|
|
|
|
<ItemGroup>
|
2022-12-20 14:22:37 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
|
2022-02-18 15:19:40 +01:00
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
2020-12-10 14:11:14 +07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-12-01 09:40:41 -05:00
|
|
|
|
|
2020-12-10 14:11:14 +07:00
|
|
|
|
</Project>
|