Skip to content

Commit 9825cb6

Browse files
committed
Merge branch 'v2_develop' into v2_release
2 parents deaf03e + 1b973ee commit 9825cb6

File tree

285 files changed

+15794
-11539
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

285 files changed

+15794
-11539
lines changed

.github/workflows/api-docs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build and publish API docs
22

33
on:
44
push:
5-
branches: [main, v2_develop]
5+
branches: [v1_release, v2_develop]
66

77
permissions:
88
id-token: write
@@ -17,11 +17,11 @@ jobs:
1717
runs-on: windows-latest
1818
steps:
1919
- name: Checkout
20-
if: github.ref_name == 'main' || github.ref_name == 'develop'
20+
#if: github.ref_name == 'v1_release' || github.ref_name == 'v1_develop'
2121
uses: actions/checkout@v4
2222

2323
- name: DocFX Build
24-
if: github.ref_name == 'main' || github.ref_name == 'develop'
24+
#if: github.ref_name == 'v1_release' || github.ref_name == 'v1_develop'
2525
working-directory: docfx
2626
run: |
2727
dotnet tool install -g docfx
@@ -31,17 +31,17 @@ jobs:
3131
continue-on-error: false
3232

3333
- name: Setup Pages
34-
if: github.ref_name == 'main' || github.ref_name == 'develop'
34+
#if: github.ref_name == 'v1_release' || github.ref_name == 'v1_develop'
3535
uses: actions/configure-pages@v5
3636

3737
- name: Upload artifact
38-
if: github.ref_name == 'main' || github.ref_name == 'develop'
38+
#if: github.ref_name == 'v1_release' || github.ref_name == 'v1_develop'
3939
uses: actions/upload-pages-artifact@v3
4040
with:
4141
path: docfx/_site
4242

4343
- name: Deploy to GitHub Pages
44-
if: github.ref_name == 'main' || github.ref_name == 'develop'
44+
if: github.ref_name == 'v1_release' || github.ref_name == 'v1_develop'
4545
id: deployment
4646
uses: actions/deploy-pages@v4
4747
with:

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish Terminal.Gui
22

33
on:
44
push:
5-
branches: [ main, develop, v2_release, v2_develop ]
5+
branches: [ v1_release, v1_develop, v2_release, v2_develop ]
66
tags:
77
- v*
88
paths-ignore:
@@ -19,13 +19,13 @@ jobs:
1919
fetch-depth: 0 # fetch-depth is needed for GitVersion
2020

2121
- name: Install GitVersion
22-
uses: gittools/actions/gitversion/setup@v1
22+
uses: gittools/actions/gitversion/setup@v2
2323
with:
2424
versionSpec: '5.x'
2525
includePrerelease: true
2626

2727
- name: Determine Version
28-
uses: gittools/actions/gitversion/execute@v1
28+
uses: gittools/actions/gitversion/execute@v2
2929
with:
3030
useConfigFile: true
3131
#additionalArguments: /b develop

CommunityToolkitExample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ private static void Main (string [] args)
1212
Services = ConfigureServices ();
1313
Application.Init ();
1414
Application.Run (Services.GetRequiredService<LoginView> ());
15-
Application.Top.Dispose();
15+
Application.Top?.Dispose();
1616
Application.Shutdown ();
1717
}
1818

GitVersion.yml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@ mode: ContinuousDeployment
22
tag-prefix: '[vV]'
33
continuous-delivery-fallback-tag: dev
44
branches:
5-
develop:
6-
mode: ContinuousDeployment
7-
tag: dev
8-
regex: develop
9-
source-branches:
10-
- main
11-
pre-release-weight: 100
12-
135
v2_develop:
146
mode: ContinuousDeployment
157
tag: dev
@@ -25,16 +17,27 @@ branches:
2517
is-release-branch: true
2618
source-branches: ['v2_develop']
2719

20+
v1_develop:
21+
mode: ContinuousDeployment
22+
tag: dev
23+
regex: v1_develop
24+
source-branches:
25+
- v1_release
26+
pre-release-weight: 100
27+
28+
v1_release:
29+
mode: ContinuousDeployment
30+
regex: v1_release
31+
is-release-branch: true
32+
source-branches: ['v1_develop']
33+
2834
pull-request:
2935
mode: ContinuousDeployment
3036
tag: PullRequest.{BranchName}
3137
increment: Inherit
3238
tag-number-pattern: '[/-](?<number>\d+)'
3339
regex: ^(pull|pull\-requests|pr)[/-]
3440
source-branches:
35-
- develop
36-
- main
37-
- release
3841
- v2_develop
3942
- v2_release
4043
- feature

ReactiveExample/FodyWeavers.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

ReactiveExample/FodyWeavers.xsd

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)