mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
16 lines
591 B
XML
16 lines
591 B
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Target Name="EnsureGeneratedBaseFolder" BeforeTargets="XamlPreCompile">
|
|
<PropertyGroup>
|
|
<!-- Only create the base 'generated' folder -->
|
|
<CompilerGeneratedFilesOutputPath>$(ProjectDir)obj\g</CompilerGeneratedFilesOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<!-- Create 'generated' folder if missing -->
|
|
<MakeDir Directories="$(CompilerGeneratedFilesOutputPath)" />
|
|
|
|
<!-- Optional logging for debugging -->
|
|
<Message Text="Ensured: $(GeneratedBasePath)" Importance="Low" />
|
|
</Target>
|
|
|
|
</Project> |