Skip to content

Commit 0cff2f2

Browse files
committed
Build with full pdb symbols (in Debug) so that we can debug and breakpoint from Visual Studio
- portable symbols seem to not work well with the current VS debugger?
1 parent 06c75aa commit 0cff2f2

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

FoundationDB.Client/FoundationDB.Client.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2222
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2323
<LangVersion>latest</LangVersion>
24+
<DebugType>full</DebugType>
25+
<DebugSymbols>true</DebugSymbols>
2426
</PropertyGroup>
2527

2628
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

FoundationDB.Layers.Common/FoundationDB.Layers.Common.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2222
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2323
<LangVersion>latest</LangVersion>
24+
<DebugType>full</DebugType>
25+
<DebugSymbols>true</DebugSymbols>
2426
</PropertyGroup>
2527

2628
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

FoundationDB.Layers.Experimental/FoundationDB.Layers.Experimental.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2222
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2323
<LangVersion>latest</LangVersion>
24+
<DebugType>full</DebugType>
25+
<DebugSymbols>true</DebugSymbols>
2426
</PropertyGroup>
2527

2628
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

FoundationDB.Linq.Providers/FoundationDB.Linq.Providers.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2222
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2323
<LangVersion>latest</LangVersion>
24+
<DebugType>full</DebugType>
25+
<DebugSymbols>true</DebugSymbols>
2426
</PropertyGroup>
2527

2628
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

0 commit comments

Comments
 (0)