summaryrefslogtreecommitdiffstats
path: root/Tests/CSharpOnly/config_specific_main_no_exist.cs
diff options
context:
space:
mode:
authorThomas Vaughan <thomas.vaughan@cnrc-nrc.gc.ca>2021-05-03 12:53:09 (GMT)
committerThomas Vaughan <thomas.vaughan@cnrc-nrc.gc.ca>2021-05-03 14:49:47 (GMT)
commitd8786bfa16889f445a37bee7e665948e7a134c13 (patch)
tree9bd7269fba05f24a7d15048fc3935caf28e7aee9 /Tests/CSharpOnly/config_specific_main_no_exist.cs
parent95afd879176256b17db44682d0664b87827c599b (diff)
downloadCMake-d8786bfa16889f445a37bee7e665948e7a134c13.zip
CMake-d8786bfa16889f445a37bee7e665948e7a134c13.tar.gz
CMake-d8786bfa16889f445a37bee7e665948e7a134c13.tar.bz2
VS: Add support for per-config C# sources
Fixes: #22108
Diffstat (limited to 'Tests/CSharpOnly/config_specific_main_no_exist.cs')
-rw-r--r--Tests/CSharpOnly/config_specific_main_no_exist.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/CSharpOnly/config_specific_main_no_exist.cs b/Tests/CSharpOnly/config_specific_main_no_exist.cs
new file mode 100644
index 0000000..b62524b
--- /dev/null
+++ b/Tests/CSharpOnly/config_specific_main_no_exist.cs
@@ -0,0 +1,10 @@
+namespace CSharpConfigSpecific
+{
+ class CSharpConfigSpecific
+ {
+ public static void Main(string[] args)
+ {
+ return;
+ }
+ }
+}