R.cs 842 B

1234567891011121314151617181920212223242526
  1. using Azylee.FormMan.ManagerUtils;
  2. using System;
  3. using System.Collections.Generic;
  4. using Y.Utils.IOUtils.PathUtils;
  5. namespace Y.Test.Commons
  6. {
  7. public static class R
  8. {
  9. public static class Paths
  10. {
  11. public static string Temp = @"D:\Temp\AppUpdate\Oreo.NetMan\Temp";
  12. //public static Dictionary<string, string> Relative = new Dictionary<string, string>()
  13. //{
  14. // { "|AppRoot|",@"D:\Temp\AppUpdate\Oreo.NetMan"},
  15. //};
  16. public static string App = AppDomain.CurrentDomain.BaseDirectory;
  17. public static Dictionary<string, string> Relative = new Dictionary<string, string>()
  18. {
  19. { "|AppRoot|",DirTool.GetFilePath(App)},
  20. };
  21. }
  22. public static FormManTool Forms = new FormManTool();
  23. }
  24. }