Updated installer files from master to main. Added a nuget.config so that the table generator will build.
This commit is contained in:
parent
823c1dfceb
commit
4ffebc1dac
8 changed files with 207 additions and 207 deletions
|
@ -22,14 +22,14 @@ type BranchMajorMinorVersion =
|
|||
Patch: int
|
||||
Release: string}
|
||||
|
||||
type BranchMajorMinorVersionOrMaster =
|
||||
| Master
|
||||
type BranchMajorMinorVersionOrMain =
|
||||
| Main
|
||||
| MajorMinor of BranchMajorMinorVersion
|
||||
| NoVersion
|
||||
|
||||
let getMajorMinor (branch: Branch): BranchMajorMinorVersionOrMaster =
|
||||
match branch.GitBranchName = "master" with
|
||||
| true -> Master
|
||||
let getMajorMinor (branch: Branch): BranchMajorMinorVersionOrMain =
|
||||
match branch.GitBranchName = "Main" with
|
||||
| true -> Main
|
||||
| _ ->
|
||||
match branch.GitBranchName.IndexOf('/') with
|
||||
| index when index < 0 -> NoVersion
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue