2021-01-20 19:15:45 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-12-01 09:40:41 -05:00
|
|
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
2021-01-20 19:15:45 +01:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
</PropertyGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
|
2022-04-21 04:59:43 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
2021-01-20 19:15:45 +01:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2022-04-21 04:59:43 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
2021-01-20 19:15:45 +01:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
|
2021-01-20 19:15:45 +01:00
|
|
|
|
<ItemGroup>
|
2022-06-28 14:30:03 +01:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
|
2022-02-18 15:19:40 +01:00
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
2021-01-20 19:15:45 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Microsoft.PowerToys.Run.Plugin.Registry\Microsoft.PowerToys.Run.Plugin.Registry.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-12-01 09:40:41 -05:00
|
|
|
|
|
2021-01-20 19:15:45 +01:00
|
|
|
|
</Project>
|