Skip to content

Commit 4618310

Browse files
authored
AOT release changes (#45)
Update the release pipeline and version information
1 parent cae5746 commit 4618310

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ jobs:
1111
- name: Setup .NET
1212
uses: actions/setup-dotnet@v1
1313
with:
14-
dotnet-version: 8.0.x
14+
dotnet-version: 9.0.x
1515
- name: Install dependencies
1616
run: dotnet restore src\SharpWebview\SharpWebview.csproj
1717
- name: Build
1818
run: dotnet build src\SharpWebview\SharpWebview.csproj --configuration Release
1919
- name: Package nuget
2020
run: dotnet pack src\SharpWebview\SharpWebview.csproj --configuration Release
21+
- name: Package AOT nuget
22+
run: dotnet pack src\SharpWebview\SharpWebview.csproj --configuration Release -p:PublishAot=true -p:PackageId=SharpWebview.Aot
2123
- name: Push nuget
2224
run: dotnet nuget push src\SharpWebview\bin\Release\*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols

examples/Minimal/Minimal.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="SharpWebview" Version="0.8.0" />
10+
<PackageReference Include="SharpWebview" Version="0.11.0" />
1111
</ItemGroup>
1212
<ItemGroup>
1313
<None Update="icon.ico">

src/SharpWebview/SharpWebview.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<Owners>Gerrit 'Geaz' Gazic</Owners>
99
<Description>C# bindings for zserge/webview - Batteries included</Description>
1010
<PackageId>SharpWebview</PackageId>
11-
<PackageVersion>0.10.0</PackageVersion>
11+
<PackageVersion>0.11.0</PackageVersion>
1212
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1313
<PackageProjectUrl>https://github.com/webview/webview_csharp</PackageProjectUrl>
1414
</PropertyGroup>

0 commit comments

Comments
 (0)