Last active
May 23, 2024 05:10
-
-
Save jkotas/5c91cc823dcc9a2dcdc682173d3ec407 to your computer and use it in GitHub Desktop.
naot webapi sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Logging": { | |
"LogLevel": { | |
"Default": "Information", | |
"Microsoft.AspNetCore": "Warning" | |
} | |
}, | |
"AllowedHosts": "*" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Text.Json.Serialization; | |
var builder = WebApplication.CreateSlimBuilder(args); | |
builder.Services.ConfigureHttpJsonOptions(options => | |
{ | |
options.SerializerOptions.TypeInfoResolverChain.Insert(0, AppJsonSerializerContext.Default); | |
}); | |
var app = builder.Build(); | |
var sampleTodos = new Todo[] { | |
new(1, "Walk the dog"), | |
new(2, "Do the dishes", DateOnly.FromDateTime(DateTime.Now)), | |
new(3, "Do the laundry", DateOnly.FromDateTime(DateTime.Now.AddDays(1))), | |
new(4, "Clean the bathroom"), | |
new(5, "Clean the car", DateOnly.FromDateTime(DateTime.Now.AddDays(2))) | |
}; | |
var todosApi = app.MapGroup("/todos"); | |
todosApi.MapGet("/", () => sampleTodos); | |
todosApi.MapGet("/{id}", (int id) => | |
sampleTodos.FirstOrDefault(a => a.Id == id) is { } todo | |
? Results.Ok(todo) | |
: Results.NotFound()); | |
app.Run(); | |
public record Todo(int Id, string? Title, DateOnly? DueBy = null, bool IsComplete = false); | |
[JsonSerializable(typeof(Todo[]))] | |
internal partial class AppJsonSerializerContext : JsonSerializerContext | |
{ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk.Web"> | |
<PropertyGroup> | |
<TargetFramework>net8.0</TargetFramework> | |
<Nullable>enable</Nullable> | |
<ImplicitUsings>enable</ImplicitUsings> | |
<InvariantGlobalization>true</InvariantGlobalization> | |
<PublishAot>true</PublishAot> | |
</PropertyGroup> | |
<PropertyGroup> | |
<SysRoot>$(ROOTFS_DIR)</SysRoot> | |
<LinkerFlavor>lld</LinkerFlavor> | |
</PropertyGroup> | |
<ItemGroup> | |
<CustomLinkerArg Include="--gcc-toolchain=$(ROOTFS_DIR)/usr" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment