diff options
author | Michael Stürmer <michael.stuermer@schaeffler.com> | 2017-01-09 15:34:13 (GMT) |
---|---|---|
committer | Michael Stürmer <michael.stuermer@schaeffler.com> | 2017-01-13 08:28:13 (GMT) |
commit | a7dd8e669289e7b78ebc05b5d337052f32582038 (patch) | |
tree | 5142590a9f2f520e4dc0f9e70524d633c8f3a023 /Tests/CSharpOnly/lib1.cs | |
parent | 6fda6005b306cc4a1e9e9e66d9cd4525fc623f73 (diff) | |
download | CMake-a7dd8e669289e7b78ebc05b5d337052f32582038.zip CMake-a7dd8e669289e7b78ebc05b5d337052f32582038.tar.gz CMake-a7dd8e669289e7b78ebc05b5d337052f32582038.tar.bz2 |
VS: added support for C# (for Visual Studio 2010, 2012, 2013, 2015)
Diffstat (limited to 'Tests/CSharpOnly/lib1.cs')
-rw-r--r-- | Tests/CSharpOnly/lib1.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/CSharpOnly/lib1.cs b/Tests/CSharpOnly/lib1.cs new file mode 100644 index 0000000..7a7ae10 --- /dev/null +++ b/Tests/CSharpOnly/lib1.cs @@ -0,0 +1,10 @@ +namespace CSharpOnly +{ + public class Lib1 + { + public static int getResult() + { + return 23; + } + } +} |