AppVeyor should build entire solution
Right now it builds dotnet build src\WebApiContrib.Core.Concurrency
Related to #39
this applies to PRs too
What do you think about using CAKE , I can maybe help .
I think maybe Fake would be a better choice? @panesofglass
Did you have to write any custom scripts for the appveryor build or was it plug and play ?
I'm partial to FAKE or even just simple powershell/bash scripts, depending on what's needed. Unfortunately, I have no experience with .NET Core builds, as I still can't use it until either a) the additional APIs are available or b) we change large parts of our current stack.
FAKE would work, at the end of the day dotnet, it's just invoking CLI commands
Basically we'd need something like this https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/OpenCoverHelper.fs
Currently app veyor is just invoking dotnet cli commands one after another. The build script we have here is not used yet on app veyor but that's because the build script should change from windows only.
So is appveyor just doing a normal vanilla build on the codebase? Ultimately are you looking to port the build script you have here to FAKE?
close?