diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-02-09 17:10:07 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-02-09 17:10:07 -0800 |
commit | f7a7276ca66f73f8b97524a1504ac270f57cd576 (patch) | |
tree | 44eaeac9b78a9424e0420dc6feb60b7d71cc6b99 | |
parent | 2d2c50f288f04a029ba4b5b206f3cd73fe585084 (diff) | |
download | DotNetOpenAuth-f7a7276ca66f73f8b97524a1504ac270f57cd576.zip DotNetOpenAuth-f7a7276ca66f73f8b97524a1504ac270f57cd576.tar.gz DotNetOpenAuth-f7a7276ca66f73f8b97524a1504ac270f57cd576.tar.bz2 |
Removes unnecessary .config settings.
-rw-r--r-- | projecttemplates/MvcRelyingParty/Web.config | 1 | ||||
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/Web.config | 1 | ||||
-rw-r--r-- | samples/InfoCardRelyingParty/web.config | 6 | ||||
-rw-r--r-- | samples/OAuthClient/Web.config | 6 | ||||
-rw-r--r-- | samples/OAuthConsumer/Web.config | 6 | ||||
-rw-r--r-- | samples/OAuthResourceServer/Web.config | 1 | ||||
-rw-r--r-- | samples/OAuthServiceProvider/Web.config | 1 | ||||
-rw-r--r-- | samples/OpenIdProviderWebForms/Web.config | 6 | ||||
-rw-r--r-- | samples/OpenIdRelyingPartyWebForms/Web.config | 6 | ||||
-rw-r--r-- | samples/OpenIdRelyingPartyWebFormsVB/Web.config | 6 | ||||
-rw-r--r-- | samples/OpenIdWebRingSsoProvider/Web.config | 6 | ||||
-rw-r--r-- | samples/OpenIdWebRingSsoRelyingParty/Web.config | 7 |
12 files changed, 8 insertions, 45 deletions
diff --git a/projecttemplates/MvcRelyingParty/Web.config b/projecttemplates/MvcRelyingParty/Web.config index 45f8b88..5b00f66 100644 --- a/projecttemplates/MvcRelyingParty/Web.config +++ b/projecttemplates/MvcRelyingParty/Web.config @@ -151,7 +151,6 @@ <compilation debug="true" targetFramework="4.0"> <assemblies> <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> - <remove assembly="DotNetOpenAuth.Contracts"/> <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> diff --git a/projecttemplates/WebFormsRelyingParty/Web.config b/projecttemplates/WebFormsRelyingParty/Web.config index 14c61f9..4def867 100644 --- a/projecttemplates/WebFormsRelyingParty/Web.config +++ b/projecttemplates/WebFormsRelyingParty/Web.config @@ -154,7 +154,6 @@ --> <compilation debug="true" targetFramework="4.0"> <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> <add assembly="System.Web.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> </assemblies> diff --git a/samples/InfoCardRelyingParty/web.config b/samples/InfoCardRelyingParty/web.config index 510196b..509279b 100644 --- a/samples/InfoCardRelyingParty/web.config +++ b/samples/InfoCardRelyingParty/web.config @@ -56,11 +56,7 @@ where data loss can occur. Set explicit="true" to force declaration of all variables. --> - <compilation debug="true" strict="false" explicit="true" targetFramework="4.5"> - <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> - </assemblies> - </compilation> + <compilation debug="true" strict="false" explicit="true" targetFramework="4.5" /> <pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID"> <namespaces> <clear/> diff --git a/samples/OAuthClient/Web.config b/samples/OAuthClient/Web.config index a6b4f3c..5fbb439 100644 --- a/samples/OAuthClient/Web.config +++ b/samples/OAuthClient/Web.config @@ -68,11 +68,7 @@ affects performance, set this value to true only during development. --> - <compilation debug="true" targetFramework="4.0"> - <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> - </assemblies> - </compilation> + <compilation debug="true" targetFramework="4.0" /> <!-- The <authentication> section enables configuration of the security authentication mode used by diff --git a/samples/OAuthConsumer/Web.config b/samples/OAuthConsumer/Web.config index 558515d..3580fe6 100644 --- a/samples/OAuthConsumer/Web.config +++ b/samples/OAuthConsumer/Web.config @@ -58,11 +58,7 @@ affects performance, set this value to true only during development. --> - <compilation debug="true" targetFramework="4.0"> - <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> - </assemblies> - </compilation> + <compilation debug="true" targetFramework="4.0" /> <!-- The <authentication> section enables configuration of the security authentication mode used by diff --git a/samples/OAuthResourceServer/Web.config b/samples/OAuthResourceServer/Web.config index c7e2133..d76a04a 100644 --- a/samples/OAuthResourceServer/Web.config +++ b/samples/OAuthResourceServer/Web.config @@ -55,7 +55,6 @@ --> <compilation debug="true" targetFramework="4.0"> <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /> </assemblies> </compilation> diff --git a/samples/OAuthServiceProvider/Web.config b/samples/OAuthServiceProvider/Web.config index 674e678..51e9ca9 100644 --- a/samples/OAuthServiceProvider/Web.config +++ b/samples/OAuthServiceProvider/Web.config @@ -58,7 +58,6 @@ --> <compilation debug="true" targetFramework="4.0"> <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> </assemblies> </compilation> diff --git a/samples/OpenIdProviderWebForms/Web.config b/samples/OpenIdProviderWebForms/Web.config index 099d6bf..d9e005d 100644 --- a/samples/OpenIdProviderWebForms/Web.config +++ b/samples/OpenIdProviderWebForms/Web.config @@ -70,11 +70,7 @@ affects performance, set this value to true only during development. --> - <compilation debug="true" targetFramework="4.0"> - <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> - </assemblies> - </compilation> + <compilation debug="true" targetFramework="4.0" /> <sessionState mode="InProc" cookieless="false"/> <membership defaultProvider="AspNetReadOnlyXmlMembershipProvider"> <providers> diff --git a/samples/OpenIdRelyingPartyWebForms/Web.config b/samples/OpenIdRelyingPartyWebForms/Web.config index e52e5b0..178687f 100644 --- a/samples/OpenIdRelyingPartyWebForms/Web.config +++ b/samples/OpenIdRelyingPartyWebForms/Web.config @@ -72,11 +72,7 @@ <system.web> <!--<sessionState cookieless="true" />--> <httpRuntime targetFramework="4.5" /> - <compilation debug="true" targetFramework="4.0"> - <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> - </assemblies> - </compilation> + <compilation debug="true" targetFramework="4.0" /> <customErrors mode="RemoteOnly"/> <authentication mode="Forms"> <forms name="OpenIdRelyingPartySession"/> <!-- named cookie prevents conflicts with other samples --> diff --git a/samples/OpenIdRelyingPartyWebFormsVB/Web.config b/samples/OpenIdRelyingPartyWebFormsVB/Web.config index a9929c2..7f4fb2f 100644 --- a/samples/OpenIdRelyingPartyWebFormsVB/Web.config +++ b/samples/OpenIdRelyingPartyWebFormsVB/Web.config @@ -72,11 +72,7 @@ <system.web> <httpRuntime targetFramework="4.5" /> <!--<sessionState cookieless="true" />--> - <compilation debug="true" targetFramework="4.5"> - <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> - </assemblies> - </compilation> + <compilation debug="true" targetFramework="4.5" /> <customErrors mode="RemoteOnly"/> <authentication mode="Forms"> <forms name="OpenIdRelyingPartyVBSession" loginUrl="loginProgrammatic.aspx"/> <!-- named cookie prevents conflicts with other samples --> diff --git a/samples/OpenIdWebRingSsoProvider/Web.config b/samples/OpenIdWebRingSsoProvider/Web.config index f439bb4..901ba5f 100644 --- a/samples/OpenIdWebRingSsoProvider/Web.config +++ b/samples/OpenIdWebRingSsoProvider/Web.config @@ -70,11 +70,7 @@ affects performance, set this value to true only during development. --> - <compilation debug="false" targetFramework="4.0"> - <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> - </assemblies> - </compilation> + <compilation debug="false" targetFramework="4.0" /> <!-- this sample-only provider uses the hard-coded list of users in the App_Data\Users.xml file --> <membership defaultProvider="AspNetReadOnlyXmlMembershipProvider"> <providers> diff --git a/samples/OpenIdWebRingSsoRelyingParty/Web.config b/samples/OpenIdWebRingSsoRelyingParty/Web.config index b27a1c5..6b645c5 100644 --- a/samples/OpenIdWebRingSsoRelyingParty/Web.config +++ b/samples/OpenIdWebRingSsoRelyingParty/Web.config @@ -77,12 +77,7 @@ affects performance, set this value to true only during development. --> - <compilation debug="false" targetFramework="4.0"> - <assemblies> - <remove assembly="DotNetOpenAuth.Contracts"/> - </assemblies> - - </compilation> + <compilation debug="false" targetFramework="4.0" /> <!-- The <authentication> section enables configuration of the security authentication mode used by |