diff --git a/.github/workflows/generateclasses.yaml b/.github/workflows/generateclasses.yaml
index f32f23b88..f5fa5525e 100644
--- a/.github/workflows/generateclasses.yaml
+++ b/.github/workflows/generateclasses.yaml
@@ -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.9 -g MASES.JNetReflector
+ run: dotnet tool update --version 2.5.10 -g MASES.JNetReflector
if: ${{ inputs.UseLatestJNetReflector == false }}
- name: Build classes with unpublished JNetReflector
@@ -99,17 +99,22 @@ jobs:
shell: cmd
run: |
cd JNet\binReflector\net8.0
- MASES.JNetReflector.exe -TraceLevel 0 -OriginRootPath %GITHUB_WORKSPACE%\jars -DestinationRootPath %GITHUB_WORKSPACE%\src\ -ConfigurationFile %GITHUB_WORKSPACE%\src\configuration.json
+ MASES.JNetReflector.exe -TraceLevel 1 -TraceTo %GITHUB_WORKSPACE%\JNetReflector.txt -OriginRootPath %GITHUB_WORKSPACE%\jars -DestinationRootPath %GITHUB_WORKSPACE%\src\ -ConfigurationFile %GITHUB_WORKSPACE%\src\configuration.json
env:
JCOBRIDGE_LicensePath: ${{ secrets.JCOBRIDGE_ONLINE }}
- name: Build classes with latest published version of JNetReflector
if: ${{ inputs.UseLatestJNetReflector == false }}
shell: cmd
- run: jnetreflector -TraceLevel 0 -OriginRootPath %GITHUB_WORKSPACE%\jars -DestinationRootPath %GITHUB_WORKSPACE%\src\ -ConfigurationFile %GITHUB_WORKSPACE%\src\configuration.json
+ run: jnetreflector -TraceLevel 1 -TraceTo %GITHUB_WORKSPACE%\JNetReflector.txt -OriginRootPath %GITHUB_WORKSPACE%\jars -DestinationRootPath %GITHUB_WORKSPACE%\src\ -ConfigurationFile %GITHUB_WORKSPACE%\src\configuration.json
env:
JCOBRIDGE_LicensePath: ${{ secrets.JCOBRIDGE_ONLINE }}
+ - uses: actions/upload-artifact@v4
+ with:
+ name: JNetReflector report
+ path: .\JNetReflector.txt
+
- name: Try compilation of Jars
continue-on-error: ${{ inputs.ContinueOnLatestJNetReflectorError == true }}
if: ${{ inputs.UseLatestJNetReflector == true }}
diff --git a/src/net/KNet/KNet.csproj b/src/net/KNet/KNet.csproj
index 9916f6fbd..8555e84be 100644
--- a/src/net/KNet/KNet.csproj
+++ b/src/net/KNet/KNet.csproj
@@ -49,7 +49,7 @@
-
+
All
None