Remove System.Data packages

This commit is contained in:
Brice Lambson 2015-01-22 14:52:13 -08:00
parent 62e48aef34
commit a307bb7009
1 changed files with 1 additions and 3 deletions

View File

@ -19,7 +19,6 @@ functions
// The repos list is topologically sorted based on build order
"Configuration",
"Caching",
"DataCommon",
"DataProtection",
"DependencyInjection",
"Options",
@ -47,7 +46,7 @@ functions
};
// Doesn't build on Mono since their contracts don't match
string[] excludeReposOnMono = new[] { "DataCommon", "Helios" };
string[] excludeReposOnMono = new[] { "Helios" };
static bool useHttps = UseHttps(BASE_DIR);
static string gitHubUriPrefix = useHttps ? "https://github.com/aspnet/" : "git@github.com:aspnet/";
@ -414,7 +413,6 @@ functions
var nonDefaultRepos = new[]
{
"KRuntime",
"SqlClient",
"MusicStore"
};
return Enumerable.Concat(repos, nonDefaultRepos);