fsprojects/Cake.SynVer

Name: Cake.SynVer

Owner: F# Community Project Incubation Space

Description: Cake Addin with the goal to get next version based on change of a dll's public API

Forked from: wallymathieu/Cake.SemVer.FromAssembly

Created: 2017-03-18 22:47:01.0

Updated: 2017-03-18 23:18:26.0

Pushed: 2017-06-27 19:18:16.0

Homepage:

Size: 49

Language: C#

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Cake.SynVer Build status

Cake Addin that exends Cake with ability to execute the SynVer tool

Usage
in Cake.SynVer

("Build-Next")
.Does(() =>

var magnitude=SemVerMagnitude("./packages/NAME/45/NAME.dll", "NAME/bin/Debug/NAME.dll");
switch(magnitude){
case Magnitude.Major:
 // update major version
case Magnitude.Minor:
 // update minor version
case Magnitude.Patch:
 // update patch version
}


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.