-
-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Build Script #62
Comments
I agree, would be nifty. |
I think msbuild would be fine. The idea is to have a start script/command to get it up and running. |
The largest project i'm managing currently is entirely based on MSBuild logic. It includes several hundred C#, .NET and Delphi projects and with these kinds of projects MSBuild really is a strong suite. For small projects with single entry points, when dotnet pack on a solution file is all thats needed to produce release artifacts, i prefer things like Cake to control different steps. I'd much prefer PSake, as that would reduce some issues with VSCode-Omnisharp and Cake... but i haven't had enough experience with it yet. |
Added simple scripts in 14f5b95 |
looks good to me, now put this somewhere in a CI environment. Appveyor, Azure DevOps, Travis... the sky is the limit here. They all give open source projects free build pipelines. |
Should also add a note in Readme as well as a test script. |
Yes, i'm opening an issue to track CI setup for you. |
For contributors it is common practice to look at the readme.md and look for a how to build section. This is where a build script should exist that does the whole stack: setup, test and package - one console command should set off the whole thing.
This can be the same script that'll end up being called by future CICD integration.
The text was updated successfully, but these errors were encountered: