fix asset copying... mostly... but it's copied into a "net48" subdirectory. in another commit i will fix that (because we will need to undo it when we fix this to stop building multiply)

This commit is contained in:
zeromus 2020-05-03 00:33:03 -04:00
parent d9cba0b156
commit 0bda6ac71e
1 changed files with 2 additions and 2 deletions

View File

@ -633,10 +633,10 @@
<Compile Update="tools/Watch/WatchValueBox.cs" SubType="Component" /> <Compile Update="tools/Watch/WatchValueBox.cs" SubType="Component" />
<Compile Update="UpdateChecker.cs" SubType="Code" /> <Compile Update="UpdateChecker.cs" SubType="Code" />
</ItemGroup> </ItemGroup>
<Target Name="AfterBuild"> <Target Name="EmuHawkAfterBuild" AfterTargets="Build">
<ItemGroup> <ItemGroup>
<AssetFiles Include="$(ProjectDir)../../Assets/**/*.*" Exclude="$(ProjectDir)../../Assets/**/.gitempty;$(ProjectDir)../../Assets/**/.gitignore" /> <AssetFiles Include="$(ProjectDir)../../Assets/**/*.*" Exclude="$(ProjectDir)../../Assets/**/.gitempty;$(ProjectDir)../../Assets/**/.gitignore" />
</ItemGroup> </ItemGroup>
<Copy SourceFiles="@(AssetFiles)" DestinationFolder="$(OutDir)%(RecursiveDir)" SkipUnchangedFiles="true" /> <Copy SourceFiles="@(AssetFiles)" DestinationFolder="$(OutputPath)%(RecursiveDir)" SkipUnchangedFiles="true" />
</Target> </Target>
</Project> </Project>