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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2010-03-16 11:32:57 +0300
committerJb Evain <jbevain@gmail.com>2010-03-16 11:32:57 +0300
commit8e186eaaef49337416dea1ce8f0ecd75706236d5 (patch)
treee09476f2f0b8c4ab5dcad2119d8e5e41fcd3a156 /msvc/scripts/genproj.cs
parentb3f3ef56c81f6589870659ca6b7db13143ea4d87 (diff)
rename net_2_1 to moonlight
svn path=/trunk/mono/; revision=153639
Diffstat (limited to 'msvc/scripts/genproj.cs')
-rw-r--r--msvc/scripts/genproj.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/msvc/scripts/genproj.cs b/msvc/scripts/genproj.cs
index ad27791b036..a42fb3ec64b 100644
--- a/msvc/scripts/genproj.cs
+++ b/msvc/scripts/genproj.cs
@@ -612,10 +612,10 @@ class MsbuildGenerator {
compiler = "net_2_0_bootstrap";
else if (compiler.EndsWith ("mcs/gmcs.exe"))
compiler = "gmcs";
- else if (compiler.EndsWith ("class/lib/net_2_1_bootstrap/smcs.exe"))
- compiler = "net_2_1_bootstrap";
- else if (compiler.EndsWith ("class/lib/net_2_1_raw/smcs.exe"))
- compiler = "net_2_1_raw";
+ else if (compiler.EndsWith ("class/lib/moonlight_bootstrap/smcs.exe"))
+ compiler = "moonlight_bootstrap";
+ else if (compiler.EndsWith ("class/lib/moonlight_raw/smcs.exe"))
+ compiler = "moonlight_raw";
else if (compiler.EndsWith ("class/lib/net_4_0_bootstrap/dmcs.exe"))
compiler = "net_4_0_bootstrap";
else if (compiler.EndsWith ("class/lib/net_4_0/dmcs.exe"))
@@ -743,7 +743,7 @@ public class Driver {
// Do not do 2.1, it is not working yet
// Do not do basic, as there is no point (requires a system mcs to be installed).
//
- if (library.Contains ("net_2_1") || library.Contains ("-basic"))
+ if (library.Contains ("moonlight") || library.Contains ("-basic"))
continue;
var gen = new MsbuildGenerator (dir);