summaryrefslogtreecommitdiff
path: root/Tests/CSharpOnly/csharponly.cs
diff options
context:
space:
mode:
authorMichael Stürmer <michael.stuermer@schaeffler.com>2017-01-09 16:34:13 +0100
committerMichael Stürmer <michael.stuermer@schaeffler.com>2017-01-13 09:28:13 +0100
commita7dd8e669289e7b78ebc05b5d337052f32582038 (patch)
tree5142590a9f2f520e4dc0f9e70524d633c8f3a023 /Tests/CSharpOnly/csharponly.cs
parent6fda6005b306cc4a1e9e9e66d9cd4525fc623f73 (diff)
downloadcmake-a7dd8e669289e7b78ebc05b5d337052f32582038.tar.gz
VS: added support for C# (for Visual Studio 2010, 2012, 2013, 2015)
Diffstat (limited to 'Tests/CSharpOnly/csharponly.cs')
-rw-r--r--Tests/CSharpOnly/csharponly.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Tests/CSharpOnly/csharponly.cs b/Tests/CSharpOnly/csharponly.cs
new file mode 100644
index 0000000000..ad4641ab66
--- /dev/null
+++ b/Tests/CSharpOnly/csharponly.cs
@@ -0,0 +1,15 @@
+namespace CSharpOnly
+{
+ class CSharpOnly
+ {
+ public static void Main(string[] args)
+ {
+ int val = Lib1.getResult();
+
+ Lib2 l = new Lib2();
+ val = l.myVal;
+
+ return;
+ }
+ }
+}