OneBuild
OneBuild copied to clipboard
Convention based PowerShell build for .NET http://lholman.github.io/OneBuild/
Leaning on something I previously implemented for a different library over [here](https://github.com/lloydstone/femah/issues/48) There's currently no easy way for people to know what they're getting in a new release of the...
Running the tests using **Invoke-Pester** rather than using the route via the OneBuild.bat gives me two failures, one for getting the latest nuget.exe path and one for the latest nunit...
To make OneBuild a little smaller on the dependency front, and also avoid the chicken and egg situation where we can't start a OneBuild build until Invoke-Build is NuGet package...
If you are using Gitflow and trying to use a tool like GitVersion to generate the numbers, passing in the **major** and **minor** would be useful to avoid having to...
Added functionality to output TeamCity system message to provide location of test result files. This is following the convention for other TeamCity messages and can be switched on/off via a...
For example, within `Set-BuildNumberWithGitCommitDetail` we have the parameter `sendTeamCityServiceMessage` which, as it suggests updates the build number within the executing TeamCity build configuration to reflect that created by OneBuild, as...
In TeamCity it's easily done with either service messages or hooking up a Build Feature to pass a known (NUNit) xml format. In AppVeyor it would seem we need to...
Currently OneBuild only supports execution of NUnit unit tests, which other unit test frameworks should we be supporting? Initial thoughts are XUnit and MSTest, however MSTest usually has a hard...
I think it would be pretty good to make use of the nuget feature to generate nuspec files and pack them based off a csproj. Atm I have to roll-my-own...