Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert C# Library To MSTest Project

I have some class libraries with NUnit tests, and I want to convert the project to use the VS 2008 MsTest integration. (Right click add test etc.)

Is there and easy way to convert or do I need to edit the csproj manually.

Thanks

like image 287
Ryu Avatar asked Jul 26 '09 23:07

Ryu


People also ask

How do we convert a Celsius?

The formula for converting Fahrenheit to Celsius is C = 5/9(F-32). Fahrenheit and Celsius are the same at -40°. At ordinary temperatures, Fahrenheit is a larger number than Celsius. For example, body temperature is 98.6 °F or 37 °C.

What is type conversions in C?

In C programming, we can convert the value of one data type ( int, float , double , etc.) to another. This process is known as type conversion.

Can you convert data types in C?

Type Casting is basically a process in C in which we change a variable belonging to one data type to another one. In type casting, the compiler automatically changes one data type to another one depending on what we want the program to do.


1 Answers

Add the following to the property group in the csproj file

<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
like image 91
Ryu Avatar answered Oct 02 '22 12:10

Ryu