Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot find reference assemblies for .NET 3.5 or lower using core msbuild #1333

Closed
nguerrera opened this issue Nov 10, 2016 · 35 comments
Closed
Labels

Comments

@nguerrera
Copy link
Contributor

dotnet/sdk supports targeting .NET 3.5 just fine if you use desktop msbuild, but it fails to find the reference assemblies using core msbuild. Both desktop and core work fine for NET4.0+.

Steps to reproduce

Create a new project with dotnet new
Change the TargetFramework to net35 or lower
Add <RuntimeIdentifier>win10-x64</RuntimeIdentifier> to the .csproj
dotnet restore
dotnet build

I've been seeing this issue since the move to msbuild. Targeting .NET 3.5 and lower works in the Preview 2 release SDK. All the relevant targeting packs are installed.

Expected behavior

A successful build

Actual behavior

Fails with the error:
... error MSB3644: The reference assemblies for framework ".NETFramework,Version=v3.5" were not found. To resolve this, install the SDK or Targeting Pack for this framework version or retarget your application to a version of the framework for which you have the SDK or Targeting Pack installed. ...

Environment data

dotnet --info output:

.NET Command Line Tools (1.0.0-preview3-004056)

Product Information:
Version: 1.0.0-preview3-004056
Commit SHA-1 hash: ccc4968

Runtime Environment:
OS Name: Windows
OS Version: 10.0.14393
OS Platform: Windows
RID: win10-x64

Moved from https://github.com/dotnet/cli/issues/4626 for @Thealexbarney.

Moved from dotnet/sdk#369 for @piotrpMSFT

@rainersigwald

@dsplaisted
Copy link
Member

dsplaisted commented Nov 11, 2016

I think the problem is that there aren't any reference assemblies for .NET Framework 3.5. The only thing in my .NETFramework\3.5 reference assemblies folder is Profile\Client. When I target .NET 3.5 from a Class Library, the references are coming from C:\Windows\Microsoft.NET\Framework\v2.0.50727\.

@rainersigwald
Copy link
Member

This comes down to code in FrameworkLocationHelper.GetPathToDotNetFramework that is disabled on .NET Core: https://github.com/Microsoft/msbuild/blob/63cf735deb821969cb096056c0c429c78cc76fbb/src/Shared/FrameworkLocationHelper.cs#L1308-L1310

There are some (probably avoidable) registry calls there, but the biggest obstacle seems to be that finding the v3.5 (or whatever) runtime depends on locating the current runtime (Path.GetDirectoryName(typeof(object).Module.FullyQualifiedName)) and looking around it to find the desired version of the framework. That won't work on Core where object comes from somewhere else entirely.

There may be another way to locate a framework (looks like HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5 has an InstallPath value that looks promising) but we'd have to figure out the right mechanism (and test the heck out of it).

@KevinH-MS
Copy link

What's the work-around for people who need to build such projects on VS 2017? I just ran into this today, and the only thing I could figure out was to compile on a separate machine with only VS 2015 installed.

@rainersigwald
Copy link
Member

@KevinH-MS It sounds like you're seeing something different from this issue--as originally reported, projects build fine using MSBuild.exe. Can you describe your problem in more detail?

@KevinH-MS
Copy link

I see. I think that's the answer to my question... 😄

(don't use dotnet build -f net35, use msbuild /p:TargetFramework=net35)

@ChrisMcKee
Copy link

ChrisMcKee commented Mar 1, 2017

Issues a pain when you're trying to generate a multi-target nuget package;
prior to the great cheese moving of 2016 I had no issues building a package that targeted 2/3.5/4/4.5/etc
Is this likely to be sorted in the next few days when VS17s released? Seems ambitious...

Admittedly I'm presuming this is msbuild related as it came with RC4 / VS2017 changes and the issue in the error being thrown is the same as the op (albeit for every version specified).

<PropertyGroup>
      ...  <TargetFrameworks>net20;net35;net40;net45;net451;net452;net462;netstandard1.3;netstandard1.6;netstandard1.6.1;netcoreapp1.1</TargetFrameworks>
    ...

etc https://github.com/BcryptNet/bcrypt.net/blob/master/src/BCrypt.Net/BCrypt.Net.csproj

Hell, it might be that after all these changes and dotnet versions I need to set fire to my PC and start afresh to get things to build 🔥

@Thealexbarney
Copy link

Right now the only options I see are:

  1. Stay on the old project.json system. (Can't use VS2017 as an IDE)
  2. Migrate to msbuild and be dependent on the full msbuild. (Can't build with dotnet SDK)
  3. Drop <= net35 support.

I guess legacy support is a lower priority than other things for now.

Ideally (IMO) there would be targeting packs on NuGet for each framework version, making it easier to target .NET Framework from the dotnet SDK.

@ghost
Copy link

ghost commented Mar 2, 2017

Our use case at work: targeting net20 is important for us as we have to make some of our libraries work on old Windows Server 2003 systems. We can't upgrade them right now. And we don't want to install anything (say, newer .NET framework versions) to avoid risks of breaking the systems.

We love dotnet tooling, but while this issue is not fixed, we'll have to stay on the full msbuild for this use case.

@schotime
Copy link

Any updates on this issue?

@ChrisMcKee
Copy link

ChrisMcKee commented Mar 15, 2017

@schotime I've been using RTW since it came out last week and this seems to be resolved.

@Thealexbarney
Copy link

@ChrisMcKee In core MSBuild or full MSBuild?

@schotime
Copy link

It works in vs for me, but not calling dotnet build manually.

@ChrisMcKee
Copy link

ChrisMcKee commented Mar 15, 2017

@Thealexbarney Windows, so full. I'm not sure you could target .net 2 on non-win platforms as it would lack the required build targets. 2/3.5/4/4.5/4.6 predating it all. You're back in mono-land there.

@drewnoakes
Copy link
Member

Also seeing this. Can build in VS2017, but dotnet build gives:

MSB3644: The reference assemblies for framework ".NETFramework,Version=v3.5" were not found.

@ChrisMcKee
Copy link

@drewnoakes use msbuild

stevenvolckaert added a commit to stevenvolckaert/enterprise-library that referenced this issue Mar 18, 2017
…on of the dotnet CLI tooling contains a bug causing the build of this target to fail, breaking CI builds. See dotnet/msbuild#1333 for more information.
@JoshClose
Copy link

I'm getting the error with .NET 2.0. I'm trying to do dotnet pack. Is there a workaround for packaging NuGet packages that will work?

@dasMulli
Copy link
Contributor

dasMulli commented Mar 24, 2017

@JoshClose you can directly call

msbuild /t:Pack /p:Configuration=Release

For version suffixes, add /p:VersionSuffix=beta-123 (however, note NuGet/Home#4337)

@JoshClose
Copy link

How can I change the package output location? Sorry, I'm no too familiar with msbuild.

@dasMulli
Copy link
Contributor

/p:PackageOutputPath=path\to\dir\

@NightOwl888
Copy link

NightOwl888 commented Apr 22, 2017

I got this working by adding the following to the .csproj file:

<PropertyGroup>
  <FrameworkPathOverride Condition="'$(TargetFramework)' == 'net35'">$(MSBuildProgramFiles32)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client</FrameworkPathOverride>
</PropertyGroup>

Unfortunately, the "normal" path C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5 doesn't work in this case because it doesn't have a copy of mscorlib.dll.

Update

This can now be addressed using the Microsoft.NETFramework.ReferenceAssemblies NuGet package. Click through to the "Project Website" for documentation.

Y-YoL added a commit to Y-YoL/UniCs2Cpp that referenced this issue Sep 2, 2018
Y-YoL added a commit to Y-YoL/UniCs2Cpp that referenced this issue Sep 2, 2018
@JohnHBrock
Copy link

Yeah, that doesn't work for me, as there is no 3.5 version of System.Web available anywhere in that folder structure. 😞

@bradwilson Did you ever find a resolution for this? I'm in the same boat.

@bradwilson
Copy link

@JohnHBrock No. There is no solution.

@JohnHBrock
Copy link

JohnHBrock commented Sep 20, 2018

@bradwilson This seems to work OK, but I haven't had time to thoroughly test it:

  <ItemGroup>
    <Reference Condition=" '$(TargetFramework)' == 'net35' " Include="System.Web" HintPath="$(WINDIR)\Microsoft.NET\Framework64\v2.0.50727\System.Web.dll"  />
  </ItemGroup>

This includes System.Web.dll as a dependency in the overall project by pulling it from the .NET 2.0 directory, and, combined with the @NightOwl888 workaround, seems to make dotnet build -f net35 succeed.

EDIT: A possible problem I've found with this approach: There are two versions of System.Web.dll under $(WINDIR)\Microsoft.NET\, one under Framework64\v2.0.50727\ (built for x64) and another under Framework\v2.0.50727\ (built for x86). In other words, System.Web.dll isn't built for Any CPU (aka MSIL). So if your project needs to target Any CPU, the lack of an Any CPU System.Web.dll poses a problem.

@skarllot
Copy link

@JohHBrock have you tried to copy files and directories from 'C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\v3.5*' to 'C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETFramework\v3.5'?

@rainersigwald
Copy link
Member

The plan to address this is to use an updated Microsoft.NETFramework.ReferenceAssemblies package that delivers .NET 3.5 once that exists (dotnet/installer#2022). That already works for .NET 2.0.

Since this can be done without MSBuild changes, I'm going to close this.

stakx added a commit to castleproject/Core that referenced this issue May 2, 2020
The new .NET CLI (`dotnet`) cannot build projects that target `net35`,
because it cannot locate the required reference assemblies.

Since we're planning to drop support for .NET Framework 3.5 anyway, it
is not worth finding a workaround for this problem--let's just remove
that target framework now.

References:

 * dotnet/msbuild#1333
stakx added a commit to stakx/Castle.Core that referenced this issue May 6, 2020
The new .NET CLI (`dotnet`) cannot build projects that target `net35`,
because it cannot locate the required reference assemblies.

Since we're planning to drop support for .NET Framework 3.5 anyway, it
is not worth finding a workaround for this problem--let's just remove
that target framework now.

References:

 * dotnet/msbuild#1333
@AR-May AR-May added the triaged label Feb 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests