Skip to content

Commit

Permalink
Fix: Remove assets dir from output, set to not create pdb files
Browse files Browse the repository at this point in the history
  • Loading branch information
AriDeve committed Dec 7, 2023
1 parent 143dc12 commit eac23d9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion JesterFree/JesterFree.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
Expand Down Expand Up @@ -86,15 +86,19 @@
<ItemGroup>
<Content Include="assets\freebird.wav">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>freebird.wav</TargetPath>
</Content>
<Content Include="assets\icon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>icon.png</TargetPath>
</Content>
<Content Include="assets\manifest.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>manifest.json</TargetPath>
</Content>
<Content Include="assets\README.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>README.md</TargetPath>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets"/>
Expand Down

0 comments on commit eac23d9

Please sign in to comment.