Skip to content

Commit

Permalink
Follow Nexus changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Wilms committed Dec 17, 2024
1 parent b43e028 commit 0fc6ba0
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ jobs:
if: ${{ env.IS_RELEASE == 'true' }}
run: python build/create_tag_body.py

- name: Set up dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0.x"

- name: Build
run: |
dotnet build -c Release /p:GeneratePackage=true src/Nexus.Sources.Transform/Nexus.Sources.Transform.csproj
Expand Down
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<!-- ## v2.0.0-beta.24 - 2024-03-15
## v2.0.0-beta.33 - 2024-12-17

- Follow Nexus changes.
-->
- Follow Nexus changes
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetFrameworkVersion>net8.0</TargetFrameworkVersion>
<TargetFrameworkVersion>net9.0</TargetFrameworkVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
Expand Down
2 changes: 1 addition & 1 deletion src/Nexus.Sources.Transform/Nexus.Sources.Transform.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Nexus.Extensibility" Version="2.0.0-beta.30.544">
<PackageReference Include="Nexus.Extensibility" Version="2.0.0-beta.33">
<!-- This is important! Took me 1 day to figure out why suddenly there are MissingMethodExceptions! -->
<ExcludeAssets>runtime;native</ExcludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Nexus.Extensibility" Version="2.0.0-beta.30.544" />
<PackageReference Include="Nexus.Extensibility" Version="2.0.0-beta.33" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.0.0",
"suffix": "beta.24"
"suffix": "beta.33"
}

0 comments on commit 0fc6ba0

Please sign in to comment.