R.cs 845 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using Y.Utils.IOUtils.PathUtils;
  4. using Y.Utils.WindowsUtils.FormUtils;
  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. }