There are couple of options to accomplish that":
Add Build Extension to Support NUnit run from MSBuild.
Create Custom Activity to run NUnit executable
Convert the NUnit Syntax to MSBuild
Because the customer had nothing special in NUnit and the entire company works in .NET and Team Build we decide to convert the NUnit Tests to MBuild Unit Tests Format.
Here is the steps you need to do:
Reference
You need to change “Nunit.framework.dll” with “Microsoft.VisualStudio.QualityTools.UnitTestFramework”.
And change the using from “using NUnit.Framework;” with “using Microsoft.VisualStudio.TestTools.UnitTesting;”.
Read more: Shai Raiten
QR: