summaryrefslogtreecommitdiffstats
path: root/second/Program.cs
diff options
context:
space:
mode:
authorBernhard Guillon <Bernhard.Guillon@begu.org>2026-06-30 21:34:48 +0200
committerBernhard Guillon <Bernhard.Guillon@begu.org>2026-06-30 21:34:48 +0200
commit1c9acabddfdce47a1b7db9275215450802ac709a (patch)
tree05794fb72c843a52f44473a6526aee140376f56d /second/Program.cs
parent793748246133423bab93258375a45f3c0ad363b2 (diff)
downloadcsharp-cmake-1c9acabddfdce47a1b7db9275215450802ac709a.tar.gz
csharp-cmake-1c9acabddfdce47a1b7db9275215450802ac709a.zip
Add Second executable with Baz dependency
Diffstat (limited to 'second/Program.cs')
-rw-r--r--second/Program.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/second/Program.cs b/second/Program.cs
new file mode 100644
index 0000000..e83e205
--- /dev/null
+++ b/second/Program.cs
@@ -0,0 +1,9 @@
+using System;
+
+class Program
+{
+ static void Main()
+ {
+ Baz.Print();
+ }
+}