Skip to content

Commit 690d3f5

Browse files
Add <DebugType>None</DebugType> to AppStore and RELEASE builds
1 parent d54dc71 commit 690d3f5

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

GitTrends.Mobile.Common/GitTrends.Mobile.Common.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@
99
<DefineConstants>TRACE;DEBUG;NETSTANDARD;NETSTANDARD2_0;</DefineConstants>
1010
</PropertyGroup>
1111
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
12-
<DebugType>
13-
</DebugType>
12+
<DebugType>None</DebugType>
1413
<DefineConstants>TRACE;RELEASE;NETSTANDARD;NETSTANDARD2_0;</DefineConstants>
1514
</PropertyGroup>
1615
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|AnyCPU' ">
17-
<DebugType>
18-
</DebugType>
16+
<DebugType>None</DebugType>
1917
<Optimize>true</Optimize>
2018
<DefineConstants>TRACE;NETSTANDARD;NETSTANDARD2_0;AppStore</DefineConstants>
2119
<NoWarn>1701;1702</NoWarn>

GitTrends/GitTrends.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
<DebugSymbols>true</DebugSymbols>
1111
</PropertyGroup>
1212
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
13-
<DebugType></DebugType>
13+
<DebugType>None</DebugType>
1414
<Optimize>true</Optimize>
1515
</PropertyGroup>
1616
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|AnyCPU' ">
17-
<DebugType></DebugType>
17+
<DebugType>None</DebugType>
1818
<Optimize>true</Optimize>
1919
<DefineConstants>AppStore</DefineConstants>
2020
<NoWarn>1701;1702</NoWarn>

0 commit comments

Comments
 (0)