Как обновить .NET Framework 4 без подключения к интернету?

2451
Roey Nissim

Я пробовал автономный установщик, но кажется, что он устанавливает только оригинальную версию (версия clr.dll 4.0.30319.1)

примечание: я пытаюсь установить полную версию, а не профиль клиента

0

2 ответа на вопрос

1
Scott Chamberlain

The CLR.dll version number does not correspond to the .NET framework version number. .NET 4.0 through 4.5.2 will all report 4.0.x for the clr.dll version number.

You likely have the correct version installed already. If you really want to be sure, follow this MSDN article "How to: Determine Which .NET Framework Versions Are Installed"

все, что я знаю, это то, что версия clr.dll на автономном компьютере - 4.0.30319.1 по сравнению с другим компьютером (онлайн), версия которого 4.0.30319.11028. и у них обоих была одинаковая начальная установка .net 4 Roey Nissim 9 лет назад 0
0
Elazaron
  1. install .net 4.5.2 or whatever is latest from here: http://www.microsoft.com/en-us/download/details.aspx?id=42642 this will give you the latest .net 4 as well as .net 4.5.2 at this moment
  2. if you want to code for .net 4 use visual studio to choose .net 4 as your project target