properly fix that net48 directory business

This commit is contained in:
zeromus 2020-05-03 00:59:09 -04:00
parent 399a50ab17
commit 664fb5cb31
1 changed files with 2 additions and 1 deletions
src/BizHawk.Client.EmuHawk

View File

@ -8,6 +8,7 @@
<OutputPath>$(ProjectDir)../../output</OutputPath> <OutputPath>$(ProjectDir)../../output</OutputPath>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<TargetFramework>net48</TargetFramework> <TargetFramework>net48</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup> </PropertyGroup>
<!-- <!--
<PropertyGroup> <PropertyGroup>
@ -637,6 +638,6 @@
<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="$(OutputPath)../%(RecursiveDir)" SkipUnchangedFiles="true" /> <Copy SourceFiles="@(AssetFiles)" DestinationFolder="$(OutputPath)%(RecursiveDir)" SkipUnchangedFiles="true" />
</Target> </Target>
</Project> </Project>