DebugSupport.cs 252 B

12345678910111213
  1. using CefBridgeDataExchange.Tests.Resources;
  2. namespace CefBridgeDataExchange.Tests
  3. {
  4. #if DEBUG
  5. internal class DebugSupport
  6. {
  7. public static string ResourcePath = $@"..\..\{typeof(DebugSupport).Namespace}\Resources";
  8. }
  9. #endif
  10. }