美好的一天!
我有以下项目结构:
Solution
-My.Project
-My.Project.Test
--Resources
---mytest.file
在我的测试文件中使用以下方法:
[TestMethod]
[DeploymentItem("My.Project.Test\\Resources\\mytest.file", @"Resources")]
TestMethod()
{
....
string path = "Resources\\mytest.file"; ....
}
根据http://msdn.microsoft.com/en-us/library/ms182475%28v=vs.100%29.aspx我只想使用没有“部署项属性”的 DeployItemAttribute。
但是当我调试它的方法时,我发现“文件未找到异常”。
我能做些什么?
此致!