The deploymentitem tag has no wiki summary.
19
votes
3answers
3k views
Do MSTest deployment items only work when present in the project test settings file?
I can't seem to grasp how MSTest deployment items are supposed to be configured. I have been able to get them working properly by modifying the project's test settings file, but this is less then ...
29
votes
8answers
10k views
Problems with DeploymentItem attribute
I'm currently maintaining an "old" system written in C#.net, removing some obsolete features and doing some refactoring. Thanks god, the previous guy wrote some unit tests (MSTests). I quite ...
0
votes
1answer
67 views
MS Test, Multiple Test Projects in Solution, and DeploymentItemAttribute
I have two unit test projects in my VS 2010 solution. Each project has a Data directory with input data needed for the unit tests.
I annotated the test classes that need the data with
...
5
votes
1answer
1k views
What is the relative path root of DeploymentItemAttribute?
Using MSTest, what is the relative path root of the DeploymentItemAttribute.
2
votes
1answer
297 views
MsTest: how to set the deployment item relative to either $(ProjectDir) or $(OutDir)
I want to add an deployment item to my test. As far as I understood up until now, the path is relative to the solution. I want the path to be relative to the project. Otherwise, the project can't be ...