Updated dependencies

New Vue files and upgraded API project to .NET Core 2
This commit is contained in:
Daniel J. Summers
2017-09-10 22:33:43 -05:00
parent 262920744a
commit 2ed01b8d5d
5 changed files with 610 additions and 579 deletions

View File

@@ -22,7 +22,7 @@ Target "BuildApp" (fun _ ->
ExecProcessAndReturnMessages (fun info ->
info.UseShellExecute <- false
info.FileName <- "build-vue.bat") (TimeSpan.FromMinutes 2.)
match result.ExitCode with 0 -> Log "AppBuild-Output: " result.Messages | _ -> failwith "Vue build failed"
match result.ExitCode with 0 -> Log "App: " result.Messages | _ -> failwith "Vue build failed"
)
Target "BuildApi" (fun _ ->
@@ -32,7 +32,7 @@ Target "BuildApi" (fun _ ->
info.FileName <- "dotnet"
info.Arguments <- "build"
info.WorkingDirectory <- apiPath) (TimeSpan.FromMinutes 2.)
Log "AppBuild-Output: " result.Messages
Log "Api: " result.Messages
match result.ExitCode with 0 -> () | _ -> failwith "API build failed"
)