'.NET 4.5 project not compiling in Visual Studio 2022
I have installed Visual Studio 2022 on my PC today. I have an old app, which targets .NET 4.5. I see this error when attempting to build/compile the project:
"Error MSB3644 The reference assemblies for .NETFramework,Version=v4.5 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks"
I have read this: https://thomaslevesque.com/2021/11/12/building-a-project-that-target-net-45-in-visual-studio-2022/. C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETFramework\v4.5 already exists on my PC.
I have downloaded the .NET 4.5 Developer Pack here: https://docs.microsoft.com/en-gb/dotnet/framework/install/guide-for-developers. I see this when I attempt to run it:
Is there anything else I can try?
Solution 1:[1]
Because you might install a higher version of .net framework firstly, so installer might stop you install a lower version of .net framework
There is another way can try to fix it without reinstalling.
- Download Microsoft.NETFramework.ReferenceAssemblies.net45 package file

- Modify the file extension name from
microsoft.netframework.referenceassemblies.net45.nupkgtomicrosoft.netframework.referenceassemblies.net45.zipand Unzip that - Copy the files from
build\.NETFramework\v4.5\toC:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5 - Running your project again.
Note
This way was also work for .net4.0 Microsoft.NETFramework.ReferenceAssemblies.net40 or other older version of .net framework which Microsoft might not support in feature
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |

