Skip to content

codinginbrazil/Fina

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fina

Maintainability

To do: health checks

Doing:

  • Dapper
  • Minimal API

Done:

  • CORS
  • Swagger
    • Microsoft.OpenApi
    • Swashbuckle.Aspnet
#Create a Solution File: To create a solution file, use the following command:
dotnet new sln -n Fina 

# Create API Project
dotnet new web -o Api

#Create Blazor WebAssembly (PWA) project:
dotnet new blazorwasm -o Web --pwa 

#Create class library (Core) project:
dotnet new classlib -o Core 

#Add Projects to Solution: Finally, add your projects to the solution: 
dotnet sln add Api/
dotnet sln add Core/
dotnet sln add Web

cd /Web/
dotnet add package MudBlazor

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published