Skip tests when runtimeconfig.json file is missing

This commit is contained in:
Nate McMaster 2016-11-02 17:48:27 -07:00
Родитель 424c45a9dd
Коммит 7220ce5a8b
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -263,6 +263,11 @@ default SAMPLES_PROJECT_GLOB = "samples/*/project.json"
var configFile = Path.Combine(targetDir, projectName + ".runtimeconfig.json");
var assembly = Path.Combine(targetDir, projectName + ".dll");
var msbuildDotnet = Path.Combine(BASE_DIR, ".build/dotnet/dotnet");
if (!File.Exists(configFile))
{
continue;
}
Exec(msbuildDotnet, string.Format(
@"exec --depsfile ""{0}"" --runtimeconfig ""{1}"" ""{2}"" ""{3}"" {4}",
depsFile,