Преглед на файлове

commit: fix release build && debugged

码农 преди 5 години
родител
ревизия
fb60dffe22
променени са 1 файла, в които са добавени 10 реда и са изтрити 3 реда
  1. 10 3
      CefBridgeDataExchange.Tests/Resources/ResourceLoader.cs

+ 10 - 3
CefBridgeDataExchange.Tests/Resources/ResourceLoader.cs

@@ -2,26 +2,33 @@
 using System.Linq;
 using System.Reflection;
 
+#if !DEBUG
+
+using System.Collections.Generic;
+
+#endif
+
 namespace CefBridgeDataExchange.Tests.Resources
 {
     internal static class ResourceLoader
     {
         private static readonly string MyNameSpaceFull = typeof(ResourceLoader).Namespace;
 
-        //TODO: add PreRelease conf to debug conditions
+        //TODO: add PreRelease conf for debug conditions
 
 #if !DEBUG
 
-        private static readonly Dictionary<string, byte[]> _cachedBinResource;
+        private static readonly Dictionary<string, byte[]> CachedBinResource;
 
         static ResourceLoader()
         {
             var assembly = Assembly.GetExecutingAssembly();
 
-            _cachedBinResource = assembly.GetManifestResourceNames()
+            CachedBinResource = assembly.GetManifestResourceNames()
                 .Where(p => p.StartsWith(MyNameSpaceFull))
                 .ToDictionary(p => p, p => assembly.GetManifestResourceStream(p).ToBytes());
         }
+
 #endif
 
         private static byte[] ToBytes(this Stream me)