framework
framework copied to clipboard
A lightweight low ceremony API for web services.
Bumps [Google.Protobuf](https://github.com/protocolbuffers/protobuf) from 3.11.1 to 3.15.0. Release notes Sourced from Google.Protobuf's releases. Protocol Buffers v3.15.0 Protocol Compiler Optional fields for proto3 are enabled by default, and no longer require the...
https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-4/
Trying to install the package through `dotnet add package FeatherHttp --prerelease ` is not working
Not sure of gRPC is already supported by this proj, if no please please please consider it :-) FeathergRPC FTW for nice fast bidirectional comms, then i can ditch golang.
User experience/ expectation Templates In Preview 4 - [ ] dotnet new minimal host - [ ] dotnet run - [ ] Auth works - [ ] List C# features...
There should be a documentation site focused on scenarios similar to this https://gowebexamples.com/. I'm also thinking about integrating samples from https://github.com/dodyg/practical-aspnetcore. cc @dodyg
Environment Windows 10 dotnet sdk - 6.0.100-preview.3.21154.16 Scenario - User installs Feather template in one windows terminal then tries creating a Feather App in windows terminal tab. **Install / tab...
The APIs are almost in a good enough state to get to an alpha. I don't think we need to docs site for that but we should iterate on it...
Maybe we need 2 overloads: - WebApplication.CreateBuilder - Less stuff? console logger and no configuration providers. - WebApplication.CreateDefaultBuilder - What we have today OR do we do nothing and require...
Trying to add a simple Open API integration: ``` var builder = WebApplication.CreateBuilder(args); builder.Services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo { Title = "WebApi", Version = "v1" }); }); var app...