Skip to content

Commit 667c34e

Browse files
committed
fix: fix bug after port to net9
1 parent cb3af2e commit 667c34e

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

.github/workflows/build-on-dev-push.yml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
# path: Ui/bin/Release/net4.8-windows/publish
104104

105105
# Publish the application Net6.0
106-
- name: Publish the application
106+
- name: Publish the application net6
107107
run: dotnet publish $env:Main_Project -p:PublishProfile=./Ui/Properties/PublishProfiles/x64-single.file.application-net6.pubxml
108108
# artifact
109109
- uses: actions/upload-artifact@v4
@@ -112,7 +112,7 @@ jobs:
112112
path: Ui/bin/Release/net6.0-windows/publish/win-x64
113113

114114
# Publish the application net9.0
115-
- name: Publish the application
115+
- name: Publish the application net9
116116
run: dotnet publish $env:Main_Project -p:PublishProfile=./Ui/Properties/PublishProfiles/x64-single.file.application.pubxml
117117
# artifact
118118
- uses: actions/upload-artifact@v4
@@ -206,7 +206,7 @@ jobs:
206206
# asset_content_type: application/zip
207207

208208
# upload package net6.x
209-
- name: Upload Release Asset
209+
- name: Upload Release Asset net6
210210
uses: actions/upload-release-asset@v1
211211
env:
212212
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -218,7 +218,7 @@ jobs:
218218
prerelease: false
219219

220220
# upload package net9.x
221-
- name: Upload Release Asset
221+
- name: Upload Release Asset net9
222222
uses: actions/upload-release-asset@v1
223223
env:
224224
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -275,8 +275,7 @@ jobs:
275275
with:
276276
name: ${{needs.JobBuild.outputs.artifact_net6x}}
277277
path: ${{needs.JobBuild.outputs.artifact_net6x}}
278-
- name: Easy Zip Files
279-
uses: vimtor/action-zip@v1
278+
- uses: vimtor/action-zip@v1
280279
with:
281280
files: ${{needs.JobBuild.outputs.artifact_net6x}}
282281
dest: ${{needs.JobBuild.outputs.artifact_net6x}}.zip
@@ -286,8 +285,7 @@ jobs:
286285
with:
287286
name: ${{needs.JobBuild.outputs.artifact_net9x}}
288287
path: ${{needs.JobBuild.outputs.artifact_net9x}}
289-
- name: Easy Zip Files
290-
uses: vimtor/action-zip@v1
288+
- uses: vimtor/action-zip@v1
291289
with:
292290
files: ${{needs.JobBuild.outputs.artifact_net9x}}
293291
dest: ${{needs.JobBuild.outputs.artifact_net9x}}.zip
@@ -316,8 +314,7 @@ jobs:
316314
# asset_content_type: application/zip
317315

318316
# upload package net6.x
319-
- name: Upload Release Asset
320-
uses: actions/upload-release-asset@v1
317+
- uses: actions/upload-release-asset@v1
321318
env:
322319
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
323320
with:
@@ -327,8 +324,7 @@ jobs:
327324
asset_content_type: application/zip
328325

329326
# upload package net9.x
330-
- name: Upload Release Asset
331-
uses: actions/upload-release-asset@v1
327+
- uses: actions/upload-release-asset@v1
332328
env:
333329
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
334330
with:

Ui/Model/TagFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void RaiseIsPinned()
5151

5252
public override string ToString()
5353
{
54-
throw new NotSupportedException();
54+
return _tagName;
5555
}
5656
}
5757
}

0 commit comments

Comments
 (0)