0
votes

It used to be the case that if you were deploying an application to Azure cloud services web role, and that application needed to use WIF, you would have to set "copy local" = true for the assembly reference for WIF, and then write a startup task to put it in the GAC up on your Azure. This is all because Azure did not have WIF.

Now that WIF is a part of .NET 4.5, do you still need to do this? Or is WIF available on your web roles already?

1

1 Answers

2
votes

WIF 4.5 is fully supported in Azure because it's built in to mscorlib for .NET 4.5, and Azure has supported 4.5 for over a year. If you need to use WIF v1 (3.5) for some reason, you will have to do the method you describe to ensure the assemblies are copied into Azure.