Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET 4.5 RTM on Azure?

Tags:

Now that .NET 4.5 and Visual Studio 2012 has RTM, is there a way to use it on Windows Azure yet? I'm aware of the hacks people used for .NET 4.5 RC, but I'm looking for a clean solution.

If it isn't possible yet, does anyone know when the tools, etc. will be updated to support it?

like image 896
David Pfeffer Avatar asked Aug 16 '12 10:08

David Pfeffer


People also ask

Is .NET 4.5 still supported?

NET Framework 4.5. 2, 4.6, and 4.61 retired on April 26, 2022. These specific releases were previously signed using Secure Hash Algorithm (SHA-1) certificates. This algorithm is no longer secure.

Is .NET framework 4.5 free?

Download .NET Framework 4.5. Free official downloads.

Can .NET 4.5 run on Windows 7?

If you're on Windows 7 and haven't yet installed Service Pack 1, you need to do so before installing the . NET Framework. . NET Framework 4.5 is supported on the Windows Preinstallation Environment (Windows PE).

How do I enable .NET 4.5 on Windows Server 2016?

NET, go to Control Panel -> Programs and Features -> Turn Windows features on or off. This will open the Add Roles and Features Wizard as part of Server Manager. You can modify the . NET version during the Features step of the Wizard.


2 Answers

At the moment there is no way to use .NET 4.5 out-of-the-box on Windows Azure. What you can do is use the Windows Azure Bootstrapper to download .NET 4.5 and install it:

bootstrapper.exe -get http://download.microsoft.com/download/B/A/4/BA4A7E71-2906-4B2D-A0E1-80CF16844F5F/dotNetFx45_Full_setup.exe -lr $lr(temp) -run $lr(temp)\dotNetFx45_Full_setup.exe -args /q /norestart -block 

Besides that I would keep an eye out for updates related to .NET 4.5 on the Guest OS Releases page.

Update 3-sep-2012: Have you seen this message: "Beginning October 3rd 2012, Windows Azure will no longer support Cloud Services (Hosted Services) deployed on Guest OS versions 2.9 or older and 1.17 or older.". This might indicate a change in Guest OS versions on October 3rd (maybe with support for .NET 4.5)...

Update 18-sep-2012: Confirmation from Scott Guthrie that .NET 4.5 support is due for October 2012.

like image 118
Sandrino Di Mattia Avatar answered Sep 22 '22 23:09

Sandrino Di Mattia


Scott Gu's twitter response: https://twitter.com/scottgu/status/240567829802414081

we are working hard on it - I should have a more precise eta soon

Update (Sep 17):

... we will enable new web and worker role images with Windows Server 2012 and .NET 4.5 next month

http://weblogs.asp.net/scottgu/archive/2012/09/17/announcing-great-improvements-to-windows-azure-web-sites.aspx

like image 45
Vyrotek Avatar answered Sep 21 '22 23:09

Vyrotek