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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/tests/test-projects/portable-library/ConsoleProject/Program.cs')
-rw-r--r--main/tests/test-projects/portable-library/ConsoleProject/Program.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/main/tests/test-projects/portable-library/ConsoleProject/Program.cs b/main/tests/test-projects/portable-library/ConsoleProject/Program.cs
new file mode 100644
index 0000000000..5fb7739c43
--- /dev/null
+++ b/main/tests/test-projects/portable-library/ConsoleProject/Program.cs
@@ -0,0 +1,14 @@
+using System;
+using PortableLibrary;
+
+namespace ConsoleProject
+{
+ class MainClass
+ {
+ public static void Main (string[] args)
+ {
+ new MyClass ();
+ Console.WriteLine ("Hello World!");
+ }
+ }
+}