Skip to content

Commit be3763f

Browse files
committed
Fix PublishProfile typo and rename pubxml file
Updated `publish.yml` to correct a typo in the `dotnet publish` command by changing the `PublishProfile` parameter to use `Net9.0-AnyCPU.pubxml`. Renamed `Net9.0-Any CPU.pubxml` to `Net9.0-AnyCPU.pubxml` to remove the space in the filename for consistency. The content of the file remains unchanged.
1 parent f5a9cdc commit be3763f

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
4848
# Publish the project
4949
- name: Publish
50-
run: dotnet publish ${{ env.Project_Path }} -p:PublishProfile=Net9.0-Any CPU.pubxml
50+
run: dotnet publish ${{ env.Project_Path }} -p:PublishProfile=Net9.0-AnyCPU.pubxml
5151

5252
# Publish to GitHub releases
5353
- name: Publish

0 commit comments

Comments
 (0)