From the course: C# Unit Testing with xUnit

Unlock the full course today

Join today to access over 24,800 courses taught by industry experts.

Installing xUnit

Installing xUnit

- [Instructor] Now, let's go through the process of setting up Xcode in your development environment. If you don't already have .NET installed, you can get the .NET Core SDK from the official website or you can use Visual Studio, like I'll be using, for the Mac. Simply download install Visual Studio from the official site. This IDE is a comprehensive software development environment tailored for creating .NET applications. This will also install the .NET Core SDK and any of the libraries and tools you'll need to develop applications and libraries. When you're ready, let's create a new solution. We'll select the Console Application from the template list and click Continue. We'll target .NET 7.0 and let's call the project HelloCalcApp. For the solution name, we'll simply delete the app so that it says HelloCalc. As you can see from the preview, we have a folder for the HelloCalc project with the solution in the route…

Contents