Hi,
I’m upgrading our project from wisej 2.5 to wisej 3.net. I’m following this doc: https://docs.wisej.com/docs/releases/whats-new-in-3.0/update-existing-projects
I can build the projects with success, but if I want to open a window or a control in the designer I’m getting this error:
“Could not resolve mscorlib for target framework ‘.NETFramework,Version=v4.8’. This can happen if the target framework is not installed or if the framework moniker is incorrectly formatted.”
What can I do?
Thank you
Giorgia
I’ve fixed the problem adding this tag on the vbproj file:
<Target Name="AddAdditionalReferences" BeforeTargets="ResolveAssemblyReferences">
<ItemGroup Condition=" '$(NoStdLib)' != 'true' ">
<_ExplicitReference Include="$(FrameworkPathOverride)\mscorlib.dll" />
</ItemGroup>
</Target>
Best regards
Yes it’s installed…
Hi Giorgia,
can you please verify if .NET Framework 4.8 is installed on your machine?
You might want to follow the instructions in this link:
Best regards
Frank