2021-01-20 19:15:45 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-11-22 12:46:59 -05:00
|
|
|
|
<TargetFramework>net8.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>
|
2023-02-13 12:10:33 -05:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" />
|
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" />
|
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>
|