Skip to content

Commit

Permalink
Embed Debug into EXE
Browse files Browse the repository at this point in the history
  • Loading branch information
TheXorog committed Jun 10, 2022
1 parent b050aa7 commit c4cf573
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions BeatRecorder/BeatRecorder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
<PackageIcon>Icon.png</PackageIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>

<ItemGroup>
<Content Include="Assets\Icon.ico" />
</ItemGroup>
Expand Down
8 changes: 8 additions & 0 deletions BeatRecorderUI/BeatRecorderUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
Expand Down

0 comments on commit c4cf573

Please sign in to comment.