Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2022-01-14 22:04:27 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2022-01-14 22:04:27 +0300
commit839cdfb0ecca5e0be3dbccd926e7651ef50fdf10 (patch)
treec2060996f48537f18a8cec798e41049ca7da5339
parent71075a0b48b1879c616cfaea087546e6d384d10a (diff)
parent6de5c5ba25886270bddfbd827b6cf0b7f8a178a2 (diff)
Merge in 'release/6.0' changesv6.0.2
-rw-r--r--src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/debugger-test-with-full-debug-type.csproj5
-rw-r--r--src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs20
2 files changed, 25 insertions, 0 deletions
diff --git a/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/debugger-test-with-full-debug-type.csproj b/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/debugger-test-with-full-debug-type.csproj
new file mode 100644
index 00000000000..5eb1be9d8ea
--- /dev/null
+++ b/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/debugger-test-with-full-debug-type.csproj
@@ -0,0 +1,5 @@
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <DebugType>full</DebugType>
+ </PropertyGroup>
+</Project> \ No newline at end of file
diff --git a/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs b/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs
new file mode 100644
index 00000000000..64609af24a5
--- /dev/null
+++ b/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs
@@ -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);
+ }
+ }
+} \ No newline at end of file