|
@@ -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)
|