mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-23 08:58:31 +00:00
12 lines
557 B
XML
12 lines
557 B
XML
<Project>
|
|
<Target Name="CleanPreviouslyGeneratedSources" BeforeTargets="GenerateSources"
|
|
Condition="'$(EmitCompilerGeneratedFiles)' == 'true' AND '$(CompilerGeneratedFilesOutputPath)' != ''">
|
|
<ItemGroup>
|
|
<PreviouslyGeneratedSources Include="$(CompilerGeneratedFilesOutputPath)\**\*.*" />
|
|
</ItemGroup>
|
|
<Delete Files="@(PreviouslyGeneratedSources)" />
|
|
</Target>
|
|
<ItemGroup Condition="'$(CompilerGeneratedFilesOutputPath)' != ''">
|
|
<Compile Remove="$(CompilerGeneratedFilesOutputPath)\**\*.cs" />
|
|
</ItemGroup>
|
|
</Project>
|