2023-02-14 18:38:53 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<Import Project="..\..\Version.props" />
|
|
|
|
|
|
<PropertyGroup>
|
2023-07-20 00:12:46 +01:00
|
|
|
|
<TargetFramework>net7.0-windows10.0.20348.0</TargetFramework>
|
|
|
|
|
|
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
|
|
|
|
|
|
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
|
2023-02-14 18:38:53 -08:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<TargetName>PowerToys.AllExperiments</TargetName>
|
|
|
|
|
|
<MockDirectory>.\Microsoft.VariantAssignment\</MockDirectory>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Experimentation is live, forcing inclusion -->
|
|
|
|
|
|
<ItemGroup Condition="'$(IsExperimentationLive)'!=''">
|
|
|
|
|
|
<!-- Newtonsoft.Json is included and a version specified in Directory.Packages.props to avoid a vulnerability from older versions. -->
|
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.VariantAssignment.Client" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.VariantAssignment.Contract" />
|
|
|
|
|
|
<Compile Remove=".\$(MockDirectory)\Client\*.cs" />
|
|
|
|
|
|
<Compile Remove=".\$(MockDirectory)\Contract\*.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|