about summary refs log tree commit diff
path: root/pkgs/test/dotnet/structured-attrs/src/Application.cs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/test/dotnet/structured-attrs/src/Application.cs')
-rw-r--r--pkgs/test/dotnet/structured-attrs/src/Application.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/test/dotnet/structured-attrs/src/Application.cs b/pkgs/test/dotnet/structured-attrs/src/Application.cs
new file mode 100644
index 0000000000000..3bc548105c2b4
--- /dev/null
+++ b/pkgs/test/dotnet/structured-attrs/src/Application.cs
@@ -0,0 +1,10 @@
+using System;
+using System.Reflection;
+
+Console.Write(
+    (
+        (AssemblyCopyrightAttribute)Assembly
+            .GetExecutingAssembly()
+            .GetCustomAttributes(typeof(AssemblyCopyrightAttribute), true)[0]
+    ).Copyright
+);