A .NET Core project helping Aggies find their dream home!
-
With authentication and authorization:
dotnet run --project AggieRent
-
With auth disabled:
dotnet run --project AggieRent -lp no-auth
dotnet test
-
VS Code is the recommended IDE for working with this project.
-
You should have .NET 8.0 available in your environment. To check, run
dotnet --version
-
Install the
CSharpier
.NET tool as well as the VS Code extension to conform to the coding style:dotnet tool restore
To format the source code from commandline, run:
dotnet dotnet-csharpier .
You should also set
Charpier
to be the default formatter, enableFormat on Save
andFormat on Paste
in your VS Code settings.