diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-02-25 14:03:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-25 14:03:02 +0200 |
| commit | 8a68dc0179bc63303a8ef8c4a339cc01ca406084 (patch) | |
| tree | 9ee89c663207c3f5cfd5e16f42ff24ea16727879 /test cases/csharp/1 basic/text.cs | |
| parent | f1ce7af2d5866b5207c1f4036477a175f433655c (diff) | |
| parent | 67f3f803620cdf5cbabd2757211cb4c969ccf41f (diff) | |
| download | meson-8a68dc0179bc63303a8ef8c4a339cc01ca406084.tar.gz | |
Merge pull request #3132 from mesonbuild/csc
Visual Studio C# compiler support and some fixes
Diffstat (limited to 'test cases/csharp/1 basic/text.cs')
| -rw-r--r-- | test cases/csharp/1 basic/text.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test cases/csharp/1 basic/text.cs b/test cases/csharp/1 basic/text.cs new file mode 100644 index 000000000..c83c424c8 --- /dev/null +++ b/test cases/csharp/1 basic/text.cs @@ -0,0 +1,7 @@ +using System; + +public class TextGetter { + public String getText() { + return "C# is working."; + } +} |
