Fix appveyor build

This commit is contained in:
Leonardo Galli 2017-05-09 19:49:30 +02:00 committed by GitHub
parent 3ab3fbfd57
commit b36ac091fc
1 changed files with 7 additions and 5 deletions

View File

@ -104,11 +104,13 @@ Task("Compile").Does(() => {
});
Task("Gulp").Does(() => {
Npm
.WithLogLevel(NpmLogLevel.Silent)
.FromPath(".")
.Install()
.RunScript("build");
NpmInstall(new NpmInstallSettings {
LogLevel = NpmLogLevel.Silent,
WorkingDirectory = "./",
Production = true
});
NpmRunScript("build");
});
Task("PackageMono").Does(() => {