Skip to content

Commit

Permalink
Update to JNet 2.5.9 (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
masesdevelopers authored Sep 19, 2024
1 parent 0090979 commit fbf63cf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/generateclasses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}

- name: Download latest published version of JNetReflector
run: dotnet tool update --version 2.5.8 -g MASES.JNetReflector
run: dotnet tool update --version 2.5.9 -g MASES.JNetReflector
if: ${{ inputs.UseLatestJNetReflector == false }}

- name: Build classes with unpublished JNetReflector
Expand All @@ -110,7 +110,12 @@ jobs:
env:
JCOBRIDGE_LicensePath: ${{ secrets.JCOBRIDGE_ONLINE }}

- name: Try compilation
- name: Try compilation of Jars
continue-on-error: ${{ inputs.ContinueOnLatestJNetReflectorError == true }}
if: ${{ inputs.UseLatestJNetReflector == true }}
run: mvn --file ./src/jvm/knet/pom.xml --no-transfer-progress package

- name: Try compilation of C#
continue-on-error: ${{ inputs.ContinueOnLatestJNetReflectorError == true }}
if: ${{ inputs.UseLatestJNetReflector == true }}
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030%3B0618" src\net\KNet\KNet.csproj
Expand Down
2 changes: 1 addition & 1 deletion src/net/KNet/KNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<None Include="..\..\documentation\articles\usage.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MASES.JNet" Version="2.5.8">
<PackageReference Include="MASES.JNet" Version="2.5.9">
<IncludeAssets>All</IncludeAssets>
<PrivateAssets>None</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/net/KNetPS/KNetPS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<!--<IncludeAssets>All</IncludeAssets>-->
<!--<PrivateAssets>None</PrivateAssets>-->
</ProjectReference>
<PackageReference Include="MASES.JNetPSCore" Version="2.5.8" />
<PackageReference Include="MASES.JNetPSCore" Version="2.5.9" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit fbf63cf

Please sign in to comment.