I am stuck with .net 4.8.03761 at registry (528049)
I need to install .net 4.7.2 for my specific project but I can't because I can't remove the .net 4.8.
Any hints?
72 Answers
I need to install .net 4.7.2 for my specific project but I can't remove the .net 4.8.
You shouldn't need to install anything if you have .net 4.8 installed as it will run applications written for 4.7.2:
.NET Framework 4.8
The .NET Framework 4.8 is included with:
.NET Framework 4.8 can be used to run applications built for the .NET Framework 4.0 through 4.7.2.
Source: Install the .NET Framework on Windows 10 | Microsoft Docs
1I am stuck with .net 4.8.03761
That is your runtime. It can run .NET applications for 4.5 and up to .NET 4.8. See .NET Version compatibility for details. Support for .NET 2.0 through 3.5 and 4.0 is separate.
for my specific project
To develop for a .net target, you need an SDK for that particular target. You can have as many SKDs installed as you need.
The SDK and the runtime are not the same thing.
I need to install .net 4.7.2
Download the .NET 4.7.2 SDK. Not the runtime (you already have a newer compatible runtime).
See also Is it possible to Install .net 4.7 version on my machine when .net 4.8 is already installed?.
1