Skip to content

Commit b9f94b5

Browse files
author
Stewart Miles
committed
Include symbols (.dll.mdb files) by default.
Changed the plugin build to include .dll.mdb files by default. Bug: 37710002 Change-Id: I955998f65d8c3121e9d32f3c4f2fc7d435515c0c
1 parent 368e71c commit b9f94b5

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ project.ext {
158158
}
159159

160160
// Whether debug symbols should be included.
161-
debugEnabled = findProperty("DEBUG") != null
161+
debugEnabled = findProperty("NDEBUG") == null
162162

163163
// Get the directory that contains this script.
164164
scriptDirectory = buildscript.sourceFile.getParentFile()

source/IOSResolver/IOSResolver.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
<ConsolePause>False</ConsolePause>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>none</DebugType>
26+
<DebugSymbols>True</DebugSymbols>
27+
<DebugType>full</DebugType>
2728
<Optimize>True</Optimize>
2829
<OutputPath>bin\Release</OutputPath>
2930
<DefineConstants>DEBUG;UNITY_EDITOR;UNITY_IOS</DefineConstants>

source/JarResolverLib/JarResolverLib.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
<ConsolePause>False</ConsolePause>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>none</DebugType>
26+
<DebugSymbols>True</DebugSymbols>
27+
<DebugType>full</DebugType>
2728
<Optimize>True</Optimize>
2829
<OutputPath>bin\Release</OutputPath>
2930
<ErrorReport>prompt</ErrorReport>

source/PlayServicesResolver/PlayServicesResolver.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2626
<DebugSymbols>True</DebugSymbols>
27-
<DebugType>none</DebugType>
27+
<DebugType>full</DebugType>
2828
<Optimize>True</Optimize>
2929
<OutputPath>bin\Release</OutputPath>
3030
<DefineConstants>DEBUG;UNITY_EDITOR</DefineConstants>

source/VersionHandler/VersionHandler.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
<ConsolePause>False</ConsolePause>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>none</DebugType>
26+
<DebugSymbols>True</DebugSymbols>
27+
<DebugType>full</DebugType>
2728
<Optimize>True</Optimize>
2829
<OutputPath>bin\Release</OutputPath>
2930
<DefineConstants>DEBUG;UNITY_EDITOR</DefineConstants>

source/VersionHandlerImpl/VersionHandlerImpl.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
<ConsolePause>False</ConsolePause>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>none</DebugType>
26+
<DebugSymbols>True</DebugSymbols>
27+
<DebugType>full</DebugType>
2728
<Optimize>True</Optimize>
2829
<OutputPath>bin\Release</OutputPath>
2930
<DefineConstants>DEBUG;UNITY_EDITOR</DefineConstants>

0 commit comments

Comments
 (0)