Skip to content

Commit

Permalink
Add <DebugType>None</DebugType> to AppStore and RELEASE builds
Browse files Browse the repository at this point in the history
  • Loading branch information
brminnick committed Aug 25, 2024
1 parent d54dc71 commit 690d3f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions GitTrends.Mobile.Common/GitTrends.Mobile.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@
<DefineConstants>TRACE;DEBUG;NETSTANDARD;NETSTANDARD2_0;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>
</DebugType>
<DebugType>None</DebugType>
<DefineConstants>TRACE;RELEASE;NETSTANDARD;NETSTANDARD2_0;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|AnyCPU' ">
<DebugType>
</DebugType>
<DebugType>None</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE;NETSTANDARD;NETSTANDARD2_0;AppStore</DefineConstants>
<NoWarn>1701;1702</NoWarn>
Expand Down
4 changes: 2 additions & 2 deletions GitTrends/GitTrends.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType></DebugType>
<DebugType>None</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|AnyCPU' ">
<DebugType></DebugType>
<DebugType>None</DebugType>
<Optimize>true</Optimize>
<DefineConstants>AppStore</DefineConstants>
<NoWarn>1701;1702</NoWarn>
Expand Down

0 comments on commit 690d3f5

Please sign in to comment.