Skip to content

Commit 6de5c5b

Browse files
authored
[wasm][debugger] Missing test files (#63148)
Adding test files that were not added on release 6.0 by mistake.
1 parent 3c2d2a1 commit 6de5c5b

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>
Lines changed: 20 additions & 0 deletions
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)