mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Add Swagger notes
This commit is contained in:
parent
c939822755
commit
b3d3606c48
1 changed files with 26 additions and 2 deletions
|
@ -1,5 +1,17 @@
|
||||||
# ASP.NET Configuration
|
# ASP.NET Configuration
|
||||||
|
|
||||||
|
## `.csproj`
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<PropertyGroup>
|
||||||
|
<!-- enable documentation comments (can be used for swagger) -->
|
||||||
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
|
||||||
|
<!-- do not warn public classes w/o documentation comments -->
|
||||||
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
||||||
|
</PropertyGroup>
|
||||||
|
```
|
||||||
|
|
||||||
## `Program.cs`
|
## `Program.cs`
|
||||||
|
|
||||||
```cs
|
```cs
|
||||||
|
@ -78,12 +90,20 @@ namespace App
|
||||||
services.AddServerSideBlazor(); // needs Razor Pages
|
services.AddServerSideBlazor(); // needs Razor Pages
|
||||||
|
|
||||||
services.AddSignalR();
|
services.AddSignalR();
|
||||||
|
|
||||||
// set dependency injection lifetimes
|
// set dependency injection lifetimes
|
||||||
services.AddSingleton<ITransientService, ServiceImplementation>();
|
services.AddSingleton<ITransientService, ServiceImplementation>();
|
||||||
services.AddScoped<ITransientService, ServiceImplementation>();
|
services.AddScoped<ITransientService, ServiceImplementation>();
|
||||||
services.AddTransient<ITransientService, ServiceImplementation>();
|
services.AddTransient<ITransientService, ServiceImplementation>();
|
||||||
|
|
||||||
|
// add swagger
|
||||||
|
services.AddSwaggerGen(options => {
|
||||||
|
|
||||||
|
// OPTIONAL: use xml comments for swagger documentation
|
||||||
|
var xmlFilename = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
||||||
|
options.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, xmlFilename));
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
||||||
|
@ -99,6 +119,7 @@ namespace App
|
||||||
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
||||||
app.UseHsts();
|
app.UseHsts();
|
||||||
}
|
}
|
||||||
|
|
||||||
app.UseHttpsRedirection();
|
app.UseHttpsRedirection();
|
||||||
app.UseStaticFiles();
|
app.UseStaticFiles();
|
||||||
|
|
||||||
|
@ -106,6 +127,9 @@ namespace App
|
||||||
|
|
||||||
app.UseAuthorization();
|
app.UseAuthorization();
|
||||||
|
|
||||||
|
app.UseSwagger();
|
||||||
|
app.UseSwaggerUI();
|
||||||
|
|
||||||
app.UseEndpoints(endpoints =>
|
app.UseEndpoints(endpoints =>
|
||||||
{
|
{
|
||||||
// MVC routing
|
// MVC routing
|
||||||
|
|
Loading…
Add table
Reference in a new issue