diff --git a/GitVersion.yml b/GitVersion.yml new file mode 100644 index 0000000000..734e324087 --- /dev/null +++ b/GitVersion.yml @@ -0,0 +1,37 @@ +mode: ContinuousDeployment +tag-prefix: '[vV]' +continuous-delivery-fallback-tag: 'pre' +branches: + v1_develop: + mode: ContinuousDeployment + tag: pre + v1: + tag: rc + increment: Patch + source-branches: + - v1_develop + + v2_develop: + mode: ContinuousDeployment + tag: pre + v2: + tag: alpha + increment: Patch + source-branches: + - v2_develop +- + # feature: + # tag: useBranchName + # regex: ^features?[/-] + # source-branches: + # - v1 + # - v1_develop + # - v2 + # - v2_develop + + pull-request: + tag: PullRequest.{BranchName} + increment: Inherit +ignore: + sha: [] +merge-message-formats: {} diff --git a/Terminal.Gui/Terminal.Gui.csproj b/Terminal.Gui/Terminal.Gui.csproj index 30592f23d0..e997f539d1 100644 --- a/Terminal.Gui/Terminal.Gui.csproj +++ b/Terminal.Gui/Terminal.Gui.csproj @@ -1,39 +1,52 @@  + + + + + + + 2.0.0 + + + + portable + TRACE;DEBUG_IDISPOSABLE portable - CS1574 - - - - 2.0 - 2.0 - 2.0 - 2.0 + net7.0 + 10.0 + Terminal.Gui + Terminal.Gui + true + + + - - - - - - - - + + - + + + + + + + + True @@ -44,6 +57,9 @@ \ + + + True @@ -57,35 +73,37 @@ Strings.Designer.cs + + + - net7.0 - 10.0 - Terminal.Gui - Terminal.Gui - bin\Release\Terminal.Gui.xml - true - Terminal.Gui MIT https://github.com/gui-cs/Terminal.Gui/ - https://github.com/gui-cs/Terminal.Gui.git - git - true - snupkg - - true - - true logo.png README.md csharp, terminal, c#, f#, gui, toolkit, console, tui Cross platform Terminal UI toolkit for .NET - Miguel de Icaza, Charlie Kindel + Miguel de Icaza, Tig Kindel A toolkit for building rich console apps for .NET that works on Windows, Mac, and Linux/Unix. Terminal.Gui - Cross platform Terminal User Interface (TUI) toolkit for .NET See: https://github.com/gui-cs/Terminal.Gui/releases + bin\Release\Terminal.Gui.xml + true + true + https://github.com/gui-cs/Terminal.Gui.git + git + true + snupkg + + true + + upstream + true + true + + Miguel de Icaza, Tig Kindel (@tig), @BDisp - - \ No newline at end of file + diff --git a/Terminal.sln b/Terminal.sln index c3a820540c..2474410eb8 100644 --- a/Terminal.sln +++ b/Terminal.sln @@ -19,6 +19,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution CODE_OF_CONDUCT.md = CODE_OF_CONDUCT.md CONTRIBUTING.md = CONTRIBUTING.md .github\workflows\dotnet-core.yml = .github\workflows\dotnet-core.yml + GitVersion.yml = GitVersion.yml + global.json = global.json .github\workflows\publish.yml = .github\workflows\publish.yml README.md = README.md Terminal.sln.DotSettings = Terminal.sln.DotSettings diff --git a/global.json b/global.json index 539d965a8d..cf0511e14d 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk":{ - "version":"6.0.100", - "rollForward":"latestMajor" + "version":"7.0.200", + "rollForward":"latestMinor" } }