Skip to content

Commit 839cdfb

Browse files
committed
Merge in 'release/6.0' changes
2 parents 71075a0 + 6de5c5b commit 839cdfb

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<DebugType>full</DebugType>
4+
</PropertyGroup>
5+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using System;
2+
3+
namespace DebuggerTests
4+
{
5+
public class ClassToInspectWithDebugTypeFull
6+
{
7+
int a;
8+
int b;
9+
int c;
10+
public ClassToInspectWithDebugTypeFull()
11+
{
12+
a = 10;
13+
b = 20;
14+
c = 30;
15+
Console.WriteLine(a);
16+
Console.WriteLine(b);
17+
Console.WriteLine(c);
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)