Minor refactors to other MSBuild files

This commit is contained in:
YoshiRulz 2024-04-02 09:15:30 +10:00
parent 2206571ab8
commit bb110d4f5e
3 changed files with 2 additions and 5 deletions

View File

@ -7,6 +7,6 @@
<None Remove="*.sh" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Copy SourceFiles="$(OutputPath)$(MSBuildProjectName).dll" DestinationFolder="$(MSBuildProjectDirectory)/../../References/" />
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(MSBuildProjectDirectory)/../../References/" />
</Target>
</Project>

View File

@ -1,8 +1,5 @@
<Project>
<Import Project="../Common.props" />
<PropertyGroup>
<OutputPath>$(MSBuildProjectDirectory)/bin/$(Configuration)/</OutputPath>
</PropertyGroup>
<ItemGroup>
<None Remove="*.sh" />
</ItemGroup>

View File

@ -31,7 +31,7 @@
Private="true" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Copy SourceFiles="$(OutputPath)$(MSBuildProjectName).dll" DestinationFolder="$(BIZHAWK_DATA_HOME)ExternalTools" />
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(BIZHAWK_DATA_HOME)ExternalTools" />
<Copy SourceFiles="@(NET48ExternalToolFormDependency)" DestinationFolder="$(BIZHAWK_DATA_HOME)ExternalTools" />
</Target>
</Project>