Reputation: 5340
I'm trying to build an open source project in Sharpdevelop, but the tests don't compile as it references the Microsoft.VisualStudio.TestTools.UnitTesting
namespace.
I don't have Visual Studio (not even the Express editions). Is there any way to compile this project without Visual Studio (and without changing the code to use NUnit)?
Upvotes: 2
Views: 1939
Reputation: 44605
I would say no, because as you can see from the namespace, MS Test framework relies on Visual Studio.
Upvotes: 1