I'm running VS 2017 RC4.
I add a reference in my .NET Core app to my .NET 4.5 dll and it compiles. When a line that references the dll is called at runtime, I get:
System.IO.FileNotFoundException: 'Could not load file or assembly 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. The system cannot find the file specified.'
This image shows that to use 4.5 references, I need to use netstandard 1.1. https://msdnshared.blob.core.windows.net/media/2016/07/172.png
Assuming that is what I need, how do I reference it in my .csproj? I can only find old documentation for when project.json was used instead.
I tried adding the below but it did not help:
<NetStandardImplicitPackageVersion>1.1</NetStandardImplicitPackageVersion>
Also, I need to add:
<RuntimeFrameworkVersion>1.0.3</RuntimeFrameworkVersion>
Or I get FileNotFoundException: Could not load file or assembly. The system cannot find the file specified.
Why is that?
Here are the relevant parts of my .csproj:
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<PackageTargetFallback>$(PackageTargetFallback);portable-net45+win8+wp8+wpa81;</PackageTargetFallback>
<RuntimeFrameworkVersion>1.0.3</RuntimeFrameworkVersion>
</PropertyGroup>
<ItemGroup>
<Reference Include="My4.5dll">
<HintPath>Dlls\My4.5dll.dll</HintPath>
</Reference>
</ItemGroup>