List:Commits« Previous MessageNext Message »
From:rburnett Date:October 23 2007 9:45pm
Subject:Connector/NET commit: r1042 - in branches/5.1: . MySql.Web/Providers/Properties
View as plain text  
Modified:
   branches/5.1/CHANGES
   branches/5.1/MySql.Web/Providers/Properties/AssemblyInfo.cs
Log:
Fixed problem with web providers not being usable on medium trust systems      


Modified: branches/5.1/CHANGES
===================================================================
--- branches/5.1/CHANGES	2007-10-23 20:54:09 UTC (rev 1041)
+++ branches/5.1/CHANGES	2007-10-23 21:45:44 UTC (rev 1042)
@@ -10,6 +10,7 @@
     used with transactions.  (Bug #31262)      
   - Fixed problem where attempting to enlist in a distributed transaction would succeed
     even though Connector/Net doesn't currently support that. (Bug #31703)
+  - Fixed problem with web providers not being usable on medium trust systems      
       
 Version 5.1.3 - 9/19/2007
   - Fixed problem with using a stored procedure that takes a parameter as a select routine

Modified: branches/5.1/MySql.Web/Providers/Properties/AssemblyInfo.cs
===================================================================
--- branches/5.1/MySql.Web/Providers/Properties/AssemblyInfo.cs	2007-10-23 20:54:09 UTC (rev 1041)
+++ branches/5.1/MySql.Web/Providers/Properties/AssemblyInfo.cs	2007-10-23 21:45:44 UTC (rev 1042)
@@ -21,6 +21,7 @@
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
+using System.Security;
 
 // General Information about an assembly is controlled through the following 
 // set of attributes. Change these attribute values to modify the information
@@ -33,8 +34,8 @@
 [assembly: AssemblyCopyright("Copyright 2004-2007, MySQL AB")]
 [assembly: AssemblyTrademark("")]
 [assembly: AssemblyCulture("")]
+[assembly: AllowPartiallyTrustedCallers()]
 
-
 // Setting ComVisible to false makes the types in this assembly not visible 
 // to COM components.  If you need to access a type in this assembly from 
 // COM, set the ComVisible attribute to true on that type.

Thread
Connector/NET commit: r1042 - in branches/5.1: . MySql.Web/Providers/Propertiesrburnett23 Oct