Minor refactors to other MSBuild files
This commit is contained in:
parent
dd9e4178d6
commit
dc0eb63221
|
@ -7,6 +7,6 @@
|
||||||
<None Remove="*.sh" />
|
<None Remove="*.sh" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
||||||
<Copy SourceFiles="$(OutputPath)$(MSBuildProjectName).dll" DestinationFolder="$(MSBuildProjectDirectory)/../../References/" />
|
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(MSBuildProjectDirectory)/../../References/" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
<Project>
|
<Project>
|
||||||
<Import Project="../Common.props" />
|
<Import Project="../Common.props" />
|
||||||
<PropertyGroup>
|
|
||||||
<OutputPath>$(MSBuildProjectDirectory)/bin/$(Configuration)/</OutputPath>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Remove="*.sh" />
|
<None Remove="*.sh" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
Private="true" />
|
Private="true" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
<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" />
|
<Copy SourceFiles="@(NET48ExternalToolFormDependency)" DestinationFolder="$(BIZHAWK_DATA_HOME)ExternalTools" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Loading…
Reference in New Issue