12 lines
402 B
XML
12 lines
402 B
XML
<Project>
|
|
<Target Name="RemoveNonApplicableFiles"
|
|
Condition="'$(SharpDXLegacy)' != 'true'"
|
|
BeforeTargets="AddGeneratedCSharpFilesToCompilation"
|
|
AfterTargets="GenerateCSharp">
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Generated/**/*.cs" />
|
|
<Compile Include="$(SharpGenGeneratedCodeFolder)/**/*.cs" Condition="'@(SharpGenMapping)' == ''" />
|
|
</ItemGroup>
|
|
</Target>
|
|
</Project> |