Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorMarek Habersack <grendel@twistedcode.net>2011-10-17 02:20:34 +0400
committerMarek Habersack <grendel@twistedcode.net>2011-10-17 02:21:48 +0400
commit00903aa6293a2768aa263b6a3d3c4c2b7d976c01 (patch)
tree22d426b797bc0577428a4e733bb80d235417b70e /data
parent85153dad0de72465133ad7677730d0ecc2b323f7 (diff)
Do not reference mscorlib explicitly in 4.5, mcs seems to do that despite /noconfig
This fixes ASP.NET/ASP.NET MVC applications using the 4.5 profile
Diffstat (limited to 'data')
-rw-r--r--data/net_4_5/web.config2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/net_4_5/web.config b/data/net_4_5/web.config
index 2a7dfd2edac..324c529f008 100644
--- a/data/net_4_5/web.config
+++ b/data/net_4_5/web.config
@@ -156,7 +156,7 @@
<webControls clientScriptsLocation="/web_scripts" />
<compilation debug="false" defaultLanguage="c#" explicit="true" strict="false" >
<assemblies>
- <add assembly="mscorlib" />
+ <!-- <add assembly="mscorlib" /> -->
<add assembly="Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<add assembly="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<add assembly="System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />