Fix diagnostics project build targets

This commit is contained in:
Meik
2026-03-18 14:46:04 +01:00
parent cd3819c9bd
commit 66ce92eadd
2 changed files with 16 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="Build">
<Message Text="Skipping LiamWorkflowDiagnostics on non-Windows because the WPF diagnostics tool requires Windows MSBuild." Importance="high" />
<MakeDir Directories="$(OutputPath)" />
<WriteLinesToFile File="$(OutputPath)LiamWorkflowDiagnostics.skipped.txt" Lines="Skipped on non-Windows because the WPF diagnostics tool requires Windows MSBuild." Overwrite="true" />
</Target>
<Target Name="Rebuild" DependsOnTargets="Clean;Build" />
<Target Name="Clean">
<Delete Files="$(OutputPath)LiamWorkflowDiagnostics.skipped.txt" />
</Target>
</Project>