Closed mserioli closed 2 years ago
A solution I found is to add the same
Thanks for any help
So the issue here is a bug. The GetMavenReferenceItemsFromProjectReferences
target, which is supposed to consult nested ProjectReferences, has a condition that prevents it from working outside Visual Studio. Fix should be made in develop.
Looking at this code again after awhile has raised some questions for me about whether it should actually be recursive. Looks like _MSBuildProjectReferenceExistent already includes transitive projects. So maybe it only needs to go one level deep.
This is resolved in 1.0.2.
Thanks for the super fast support
Dear all,
I'm using IKVM.Maven.Sdk on a .net core 6 class library, in order to use Saxon-HE as follows: `
`
If I build the project from Visual Studio 2022 everything's fine.
If I build my solution from dotnet.exe tool
dotnet.exe build .\Proj\Proj.csproj -c Release
I do not have in the output directory of my application the following dependencies:
only Saxon.HE": "11.4.0.0" is there
And the generated App.deps.json file lacks them as well
Perhaps is there anything I'm missing on the execution of dotnet.exe build?
Thanks for your support