I created an asp.net core mvc project and also created a unit testing project below is the code for the unit testing project:
using System;
using Microsoft.AspNetCore.Mvc; // error, type or namespace is missing
using Xunit;
namespace Project.Tests
{
public class UnitTest1
{
[Fact]
public void Test1()
{
...
}
}
}
I don't quite understand, I used to create unit testing projects without any problem, why I cannot access Microsoft.AspNetCore.Mvc this time?

