Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Missing files on release 6 branch
  • Loading branch information
thaystg committed Dec 27, 2021
commit 7064d97a5ae925d8d4de467ad23129ad042737cc
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);
}
}
}