annotate Source/Data/Linq/Settings.cs @ 8:a34cfdde80d6
 
removed strong signing
added FrameworkPathOverride for linux builds
 | author | cin | 
 | date | Wed, 29 Nov 2017 12:43:52 +0300 | 
 | parents | f990fcb411a9 | 
 | children |  | 
 | rev | line source | 
  
| 0 | 1 using System; | 
|  | 2 | 
|  | 3 namespace BLToolkit.Data.Linq | 
|  | 4 { | 
|  | 5 	public static class Settings | 
|  | 6 	{ | 
|  | 7 #if SILVERLIGHT | 
|  | 8 		public static Func<string,IDataContext> CreateDefaultDataContext = config => { throw new InvalidOperationException(); }; | 
|  | 9 #else | 
|  | 10 		public static Func<string,IDataContext> CreateDefaultDataContext = config => new DbManager(config ?? DbManager.DefaultConfiguration); | 
|  | 11 #endif | 
|  | 12 	} | 
|  | 13 } |