我定义了以下属性,因为我们在单元测试中经常使用此属性。
public static string AssemblyDirectory{ get { string prebase = Assembly.GetExecutingAssembly().Codebase; UriBuilder uri = new UriBuilder(prebase); string path = Uri.UnescapeDataString(uri.Path); return Path.GetDirectoryName(path); }}
Assembly.Location使用NUnit时,该属性有时会给您一些有趣的结果(程序集从一个临时文件夹运行),所以我更喜欢使用
CodebaseURI以URI格式提供路径,然后
UriBuild.UnescapeDataString删除
File://开头的内容,并将其
GetDirectoryName更改为正常的Windows格式。
。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)