Skip to content

Commit

Permalink
Merge in 'release/6.0' changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dotnet-bot committed Jan 14, 2022
2 parents 71075a0 + 6de5c5b commit 839cdfb
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<DebugType>full</DebugType>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using System;

namespace DebuggerTests
{
public class ClassToInspectWithDebugTypeFull
{
int a;
int b;
int c;
public ClassToInspectWithDebugTypeFull()
{
a = 10;
b = 20;
c = 30;
Console.WriteLine(a);
Console.WriteLine(b);
Console.WriteLine(c);
}
}
}

0 comments on commit 839cdfb

Please sign in to comment.