After #95 closing #45, It should be great to:
-
publish the package on https://nuget.org/.
-
update the package frequently
-
make "strict" use of semver http://semver.org/, incrementing semver based on breaking change (=major), incrementing feature (=minor) bug fixes (=patch). For example, node.js haven't received any breaking change till date (current stable version is v0.12.3)!
-
publish the release on GitHub: https://github.com/Microsoft/msbuild/releases highlighting the changes since previous version and to let user install the package from source like so:
Install-Package MSBuild -Source https://github.com/microsoft/msbuild/archive/v0.1.0.zip
(assuming MSBuild does not have its own versioning, now would be an excellent time to start fresh with semver)
Additional notes:
The releases by GitHub get the "release assets" stored in Amazon S3. The .tar.gz and .zip files are automatically generated and uploaded by GitHub. You can manually add more files as release assets by editing the release. Ex. https://github.com/microsoft/msbuild/releases/edit/<version>, scroll down where it says Attach binaries by dropping them here or selecting them or even using GitHub API.
After #95 closing #45, It should be great to:
publish the package on https://nuget.org/.
update the package frequently
make "strict" use of semver http://semver.org/, incrementing semver based on breaking change (=major), incrementing feature (=minor) bug fixes (=patch). For example, node.js haven't received any breaking change till date (current stable version is v0.12.3)!
publish the release on GitHub: https://github.com/Microsoft/msbuild/releases highlighting the changes since previous version and to let user install the package from source like so:
(assuming MSBuild does not have its own versioning, now would be an excellent time to start fresh with semver)
Additional notes:
The releases by GitHub get the "release assets" stored in Amazon S3. The .tar.gz and .zip files are automatically generated and uploaded by GitHub. You can manually add more files as release assets by editing the release. Ex.
https://github.com/microsoft/msbuild/releases/edit/<version>, scroll down where it saysAttach binaries by dropping them here or selecting themor even using GitHub API.