Skip to content

Commit 3b2edab

Browse files
committed
publish
1 parent d8cf82a commit 3b2edab

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/release-nuget.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ jobs:
2525
$content = $content -replace "<br>", " "
2626
Set-Content -Path README.md -Value $content
2727
28-
- name: Dotnet build FeshHosting for net8
29-
run: dotnet build FeshHosting.fsproj --configuration Release --output bin/publishNuget
30-
3128
3229
- name: Check version consistency of git tag and CHANGELOG.md
3330
# needs in fsproj:
@@ -54,8 +51,11 @@ jobs:
5451
$projFile = Get-Content -Path FeshHosting.fsproj -Raw
5552
$projFile = $projFile -replace "<TargetFramework>.*?</TargetFramework>", "<TargetFramework>net10.0-windows</TargetFramework>"
5653
Set-Content -Path FeshHosting.fsproj -Value $projFile
57-
58-
- name: Push net10 NuGet package to nuget.org
54+
55+
- name: Dotnet build FeshHosting for net10
56+
run: dotnet build FeshHosting.fsproj --configuration Release --output bin/publishNuget
57+
58+
- name: Push net10 NuGet package to nuget.org without suffix
5959
run: |
6060
dotnet nuget push `
6161
./bin/publishNuget/Fesh.${{ github.ref_name }}.symbols.nupkg `

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [0.30.0-alpha3] - 2025-12-19
10+
## [0.30.1] - 2025-12-19
1111
### Changed
1212
- net472, net8, net9 nuget with suffix, net10 nuget without suffix
1313
- don't load nuget packages while typing them to avoid loading unwanted packages

FeshHosting.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<!-- <TargetFrameworks>net472;net8.0-windows</TargetFrameworks> somehow the resultant nuget from multiple target frameworks
1111
does get unified to 8.0 and does not work on net48 -->
1212
<!--so the the release-nuget.yml aktion will change this and also publish a net472,net8,net9 nuget separately: -->
13-
<TargetFramework>net8.0-windows</TargetFramework> <!-- use the lowest F# here by default -->
13+
<TargetFramework>net8.0-windows</TargetFramework> <!-- use the lowest F# here by default, will be replace by other versions in release-nuget.yml -->
1414

1515
<DefineConstants Condition="'$(TargetFramework)' == 'net472'">NETFRAMEWORK</DefineConstants> <!-- so thread.Abort() can be used -->
1616
<DefineConstants Condition="'$(TargetFramework)' == 'net8.0-windows'">NET8</DefineConstants> <!-- so that caret in GetProjectOptionsFromScript can be skipped-->

0 commit comments

Comments
 (0)