ASP.NET é uma estrutura web de código aberto, criada pela Microsoft, para construir aplicativos e serviços web modernos com .NET. ASP.NET é multiplataforma e roda em Windows, Linux, macOS e Docker.
mais: https://dotnet.microsoft.com/en-us/learn/aspnet/what-is-aspnet
Criar projeto de solução
dotnet new sln -n Tutorial-Api
Criar projeto de API Web ASP.NET
dotnet new webapi -o Api
Criar projeto XUnit
dotnet new xunit -o Xunit.Tests
Adicionar projetos à solução
dotnet sln add .Tutorial.ApiTutorial.Api.csproj
dotnet sln add .XUnit.TestsXUnit.Tests.csproj
Adicionar projeto de referência ao projeto xunit
dotnet add . /XUnit.Tests/XUnit.Tests.csproj reference .Tutorial.ApiTutorial.Api.csproj
Adicionar dependência do driver MongoDB ao projeto
dotnet add package MongoDB.Driver --version 2.18.0
Mangusto
Install mongo-shell
https://www.mongodb.com/docs/mongodb-shell/install/
> mongod --dbpath < data_directory_path >
> show dbs
> use tutorialdb
> db.createCollection( ' tutorials ' )
> db.tutorials.insertMany([{ " title " : " Design Patterns " , " description " : " " , " published " : false}])
> db.tutorials.find().pretty ()
dotnet run --project . /Tutorial.Api/
Arrogância: https://localhost:7272/swagger
https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-run#examples
GET /api/tutoriais
Resposta
[
{
"id" : " 63730beabd3cb05f2331be45 " ,
"title" : " hello " ,
"description" : " world " ,
"published" : null ,
"createdAt" : " 0001-01-01T00:00:00Z " ,
"updatedAt" : " 0001-01-01T00:00:00Z "
},
{
"id" : " 63732124796b18bc753e9157 " ,
"title" : " dotnet " ,
"description" : " microsoft " ,
"published" : null ,
"createdAt" : " 0001-01-01T00:00:00Z " ,
"updatedAt" : " 0001-01-01T00:00:00Z "
}
]
GET /api/tutoriais/{id}
Resposta
{
"id" : " 63730beabd3cb05f2331be45 " ,
"title" : " hello " ,
"description" : " world " ,
"published" : null ,
"createdAt" : " 0001-01-01T00:00:00Z " ,
"updatedAt" : " 0001-01-01T00:00:00Z "
}
POST /api/tutoriais
Corpo da Solicitação
{
"title" : " string " ,
"description" : " string " ,
}
Corpo de Resposta
{
"code" : " 200 " ,
"message" : " Inserted a single document Success "
}
DELETE /api/tutoriais
Corpo de Resposta
{
"code" : " 200 " ,
"message" : " All deleted "
}
DELETE /api/tutoriais/{id}
Corpo de Resposta
{
"code" : " 200 " ,
"message" : " Deleted id 63730beabd3cb05f2331be45 "
}
PUT /api/tutoriais/{id}
Corpo da Solicitação
{
"id" : " 63730beabd3cb05f2331be45 " ,
"title" : " hello " ,
"description" : " world " ,
"published" : true
}
Corpo de Resposta
{
"code" : " 200 " ,
"message" : " Deleted id 63730beabd3cb05f2331be45 "
}
dotnet build
Restaurar como camadas distintas
dotnet restore
Crie e publique uma versão
dotnet publish -c Release -o out
Executar cobertura
dotnet test --collect:"XPlat Code Coverage"
Adicionar pepita do ReportGenerator
dotnet add package ReportGenerator --version 5.1.10
Ferramenta de configuração ReportGenerator
dotnet tool install -g dotnet-reportgenerator-globaltool
mais: https://www.nuget.org/packages/ReportGenerator
reportgenerator -reports:"XUnit.TestsTestResults*coverage.cobertura.xml" -targetdir:". /coveragereport" -reporttypes:Html
Variáveis de ambiente
Nome do ambiente | Valor |
---|---|
TutorialDatabase__ConnectionString | mongodb://xxxxxxx |
TutorialDatabase__DatabaseName | tutorialdb |
TutorialDatabase__TutorialCollectionName | tutoriais |
https://learn.microsoft.com/en-us/azure/azure-monitor/app/ilogger#aspnet-core-applications
Adicionar pacote ApplicationInsights
dotnet add package Microsoft.ApplicationInsights.AspNetCore --version 2.21.0
...