mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
Co-authored-by: Sophia Chen <sophia.six.chen@gmail.com> Co-authored-by: Niels Laute <niels.laute@live.nl> Co-authored-by: Sophia Chen <sophchen@microsoft.com>
28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\..\Version.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0-windows10.0.19041.0</TargetFramework>
|
|
<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>
|