I've successfully built and deployed a ClickOnce app based on .NET 4.7.1 using the latest (stable) Visual Studio 2017 version. However, another app won't install:
I've tried to install it into the GAC:
- Find
Microsoft.Extensions.FileProviders.Physical
(there is a NuGet package for it, so I can find and extract the DLL) - Install it in the gac with
gacutil -i
.
However, I get an error message, telling me:
Failure adding assembly to the cache: This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.
Where can I find a gacutil
which would work with the 2.0.0 version of this assembly?
Or am I doing it in the wrong way? Is there another solution to this issue?
Edited 2017.11.18:
I opened an issue in the Visual Studio Developer Comunity.