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.
13 lines
439 B
13 lines
439 B
# .NET-React
|
|
|
|
1. Go to https://dotnet.microsoft.com/download and click "Download .NET Core SDK"
|
|
1. Open package and follow installation prompts
|
|
1. In terminal, go to a good location for projects (outside class repo) and run:
|
|
1. `dotnet new react -o dotnetreact`
|
|
1. `cd dotnetreact`
|
|
1. `export ASPNETCORE_Environment=Development`
|
|
1. `dotnet build`
|
|
1. `dotnet run`
|
|
|
|
Your React Files are in the `ClientApp` directory of your repo
|