Make MSBuild ignore shell scripts for external .NET projects

This commit is contained in:
YoshiRulz 2022-10-01 03:36:14 +10:00
parent 929b034321
commit 1fbb95a353
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,9 @@
<PropertyGroup>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
</PropertyGroup>
<ItemGroup>
<None Remove="*.sh" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Copy SourceFiles="$(OutputPath)$(MSBuildProjectName).dll" DestinationFolder="$(ProjectDir)../../References/" />
</Target>