Skip to content

Commit 6e6c464

Browse files
authored
Migrate pdb information to be embedded to reduce number of file handl… (#339)
1 parent 3dbf393 commit 6e6c464

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Mono.Debugger.Soft/Mono.Debugger.Soft.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</PropertyGroup>
1515
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1616
<DebugSymbols>True</DebugSymbols>
17-
<DebugType>portable</DebugType>
17+
<DebugType>embedded</DebugType>
1818
<Optimize>False</Optimize>
1919
<OutputPath>bin\Debug</OutputPath>
2020
<DefineConstants>MONO_DATACONVERTER_STATIC_METHODS;ENABLE_CECIL</DefineConstants>
@@ -25,7 +25,7 @@
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2727
<DebugSymbols>True</DebugSymbols>
28-
<DebugType>pdbonly</DebugType>
28+
<DebugType>embedded</DebugType>
2929
<Optimize>True</Optimize>
3030
<OutputPath>bin\Release</OutputPath>
3131
<ErrorReport>prompt</ErrorReport>

Mono.Debugging.Soft/Mono.Debugging.Soft.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1515
<DebugSymbols>True</DebugSymbols>
16-
<DebugType>portable</DebugType>
16+
<DebugType>embedded</DebugType>
1717
<Optimize>False</Optimize>
1818
<OutputPath>bin\Debug</OutputPath>
1919
<DefineConstants>DEBUG</DefineConstants>
@@ -23,7 +23,7 @@
2323
<DocumentationFile>bin\Debug\Mono.Debugging.Soft.xml</DocumentationFile>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>pdbonly</DebugType>
26+
<DebugType>embedded</DebugType>
2727
<Optimize>true</Optimize>
2828
<OutputPath>bin\Release</OutputPath>
2929
<ErrorReport>prompt</ErrorReport>

Mono.Debugging/Mono.Debugging.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1717
<DebugSymbols>True</DebugSymbols>
18-
<DebugType>portable</DebugType>
18+
<DebugType>embedded</DebugType>
1919
<Optimize>False</Optimize>
2020
<OutputPath>bin\Debug</OutputPath>
2121
<DefineConstants>DEBUG</DefineConstants>
@@ -29,7 +29,7 @@
2929
<DocumentationFile>bin\Debug\Mono.Debugging.xml</DocumentationFile>
3030
</PropertyGroup>
3131
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
32-
<DebugType>pdbonly</DebugType>
32+
<DebugType>embedded</DebugType>
3333
<Optimize>true</Optimize>
3434
<OutputPath>bin\Release</OutputPath>
3535
<ErrorReport>prompt</ErrorReport>

0 commit comments

Comments
 (0)