diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-12-23 07:58:11 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-12-23 07:58:11 -0800 |
commit | 060c223e3566ddc849e5a8b538eb26a2666d31fd (patch) | |
tree | e7b95225913bbfa630a2c43078199ace8e9f1739 | |
parent | 84968f08da0905e374d875a15c49b366b25acf2d (diff) | |
download | DotNetOpenAuth-060c223e3566ddc849e5a8b538eb26a2666d31fd.zip DotNetOpenAuth-060c223e3566ddc849e5a8b538eb26a2666d31fd.tar.gz DotNetOpenAuth-060c223e3566ddc849e5a8b538eb26a2666d31fd.tar.bz2 |
Added some more web.config transform goodness to NuGet.
-rw-r--r-- | nuget/content/web.config.transform | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/nuget/content/web.config.transform b/nuget/content/web.config.transform index 54fc9e7..07e22d9 100644 --- a/nuget/content/web.config.transform +++ b/nuget/content/web.config.transform @@ -22,6 +22,20 @@ </settings> </system.net> + <runtime> + <!-- This prevents the Windows Event Log from frequently logging that HMAC1 is being used (when the other party needs it). --> + <legacyHMACWarning enabled="0" /> + + <!-- When targeting ASP.NET MVC 2, this assemblyBinding makes MVC 1 references relink + to MVC 2 so libraries such as DotNetOpenAuth that compile against MVC 1 will work with it. --> + <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> + <dependentAssembly> + <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> + <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" /> + </dependentAssembly> + </assemblyBinding> + </runtime> + <dotNetOpenAuth> <!-- This is an optional configuration section where aspects of dotnetopenauth can be customized. --> <!-- For a complete set of configuration options see http://www.dotnetopenauth.net/developers/code-snippets/configuration-options/ --> |