Github user davhdavh commented on the issue:
https://github.com/apache/lucenenet/pull/203
After trying to get strong names on, I can say that the entire build system
is broken on latest version of dotnet sdk. 1. Restore needs a specific sln,
since there are two, ie: `& dotnet.exe restore $base_directory\Lucene.Net.sln`
2. build command no longer accepts a project.json, but instead uses the csproj
files. That can be fixed by finding the csproj files before build-assemblies
call:
```
pushd $base_directory
$projects = Get-ChildItem -Path "*.csproj" -Recurse
popd
Build-Assemblies $projects
```
and yet with those fixes, I still cant get it working.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---