Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <m.j.hutchinson@gmail.com>2013-08-10 23:21:06 +0400
committerMichael Hutchinson <m.j.hutchinson@gmail.com>2013-08-10 23:21:06 +0400
commitfdab499af86a9aff473f29c227562429dc3cbfff (patch)
treea17d0992d93b1e618230446d6b01b062966d362d /main/tests/UserInterfaceTests/UserInterfaceTests.csproj
parentae924d17f14618940766e7a84d042dbf0b9c854d (diff)
Build pdbonly debug symbols in release configurations
Diffstat (limited to 'main/tests/UserInterfaceTests/UserInterfaceTests.csproj')
-rw-r--r--main/tests/UserInterfaceTests/UserInterfaceTests.csproj5
1 files changed, 3 insertions, 2 deletions
diff --git a/main/tests/UserInterfaceTests/UserInterfaceTests.csproj b/main/tests/UserInterfaceTests/UserInterfaceTests.csproj
index 4d6b96e28c..9953d49b73 100644
--- a/main/tests/UserInterfaceTests/UserInterfaceTests.csproj
+++ b/main/tests/UserInterfaceTests/UserInterfaceTests.csproj
@@ -20,11 +20,12 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>none</DebugType>
- <Optimize>False</Optimize>
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
<OutputPath>..\..\build\tests</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ <DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />