mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
Duplicating https://github.com/microsoft/PowerToys/pull/37001, but opening from upstream instead of fork as CI doesn't play nicely with PRs from forks (https://github.com/microsoft/PowerToys/pull/37617 is improving that) --------- Co-authored-by: Clint Rutkas <clint@rutkas.com> Co-authored-by: vanzue <vanzue@outlook.com>
20 lines
869 B
XML
20 lines
869 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Some items may be set in Directory.Build.props in root -->
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<!-- OneFuzz does not currently support testing with .NET 9.
|
|
As a temporary workaround, create a .NET 8 project and use file links
|
|
to include the code that needs testing. -->
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows10.0.26100.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
In CI, the main build runs `/t:Build;Test` across the full solution.
|
|
Fuzz test projects are built for OneFuzz ingestion, but should not be
|
|
executed as regular MSTest tests in this pass.
|
|
-->
|
|
<PropertyGroup Condition="'$(TF_BUILD)' != ''">
|
|
<TestingPlatformDisableCustomTestTarget>true</TestingPlatformDisableCustomTestTarget>
|
|
</PropertyGroup>
|
|
</Project>
|