-
Notifications
You must be signed in to change notification settings - Fork 731
Description
Hello,
Since Microsoft unlists a month ago System.Reflection.Emit and System.Reflection.Emit.Lightweight both 4.3.0 version (https://github.com/dotnet/corefx/issues/29365) you should consider to remove the target netstandard2.0 and specify netcoreapp2.0... or at least add netcoreapp2.0 to the list of all supported targets. (And maybe netcoreapp2.1 ?)
In fact, I can no longer uses FluentAssertions on a project which performs dynamic assemblies loading because of the following error I had during assembly discovering in units tests:
An assembly specified in the application dependencies manifest (CKSetup.Runner.deps.json) was not found:
package: 'System.Security.Cryptography.ProtectedData', version: '4.4.0'
path: 'runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll'
Of course, the previous error disappeared with a dotnet publish which will finaly resolves correctly the runtimes, but doing dotnet publish before running unit tests is not suitable...
Thank you !