summary refs log tree commit diff
path: root/pkgs/test/dotnet/project-references/library/Library.cs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/test/dotnet/project-references/library/Library.cs')
-rw-r--r--pkgs/test/dotnet/project-references/library/Library.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/test/dotnet/project-references/library/Library.cs b/pkgs/test/dotnet/project-references/library/Library.cs
new file mode 100644
index 00000000000..a4af4a0fea2
--- /dev/null
+++ b/pkgs/test/dotnet/project-references/library/Library.cs
@@ -0,0 +1,8 @@
+namespace ProjectReferencesTest;
+public static class Library
+{
+    public static void Hello()
+    {
+        System.Console.WriteLine("Hello, World!");
+    }
+}