You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

439 B

.NET-React

  1. Go to https://dotnet.microsoft.com/download and click "Download .NET Core SDK"
  2. Open package and follow installation prompts
  3. In terminal, go to a good location for projects (outside class repo) and run:
  4. dotnet new react -o dotnetreact
  5. cd dotnetreact
  6. export ASPNETCORE_Environment=Development
  7. dotnet build
  8. dotnet run

Your React Files are in the ClientApp directory of your repo