Skip to content

Commit

Permalink
[wasm][debugger] Missing test files (#63148)
Browse files Browse the repository at this point in the history
Adding test files that were not added on release 6.0 by mistake.
  • Loading branch information
thaystg authored Jan 14, 2022
1 parent 3c2d2a1 commit 6de5c5b
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 6de5c5b

Please sign in to comment.