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:
authorJoão Matos <joao@tritao.eu>2015-09-14 02:14:41 +0300
committerJoão Matos <joao@tritao.eu>2015-09-14 02:14:41 +0300
commita8d6b4abff88a2b1d0c56053f9ac54c5e82625e2 (patch)
tree70266ffdb7800e5c1896dd8d2b394b394181d075 /msvc/scripts/genproj.cs
parent2687866e99a0bb6669dc61b84393bc3ec5de3fc6 (diff)
[genproj] Skip Facades, mcs and Microsoft.Web.Infrastructure.
Diffstat (limited to 'msvc/scripts/genproj.cs')
-rw-r--r--msvc/scripts/genproj.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/msvc/scripts/genproj.cs b/msvc/scripts/genproj.cs
index 6f134efec93..e4276cf6b17 100644
--- a/msvc/scripts/genproj.cs
+++ b/msvc/scripts/genproj.cs
@@ -977,6 +977,14 @@ public class Driver {
string library = project.Attribute ("library").Value;
var profile = project.Element ("profile").Value;
+ // Skip facades for now, the tool doesn't know how to deal with them yet.
+ if (dir.Contains ("Facades"))
+ continue;
+
+ // These are currently broken, skip until they're fixed.
+ if (dir.StartsWith ("mcs") || dir.Contains ("Microsoft.Web.Infrastructure"))
+ continue;
+
//
// Do only class libraries for now
//