0.1 Solution + projects
Scaffold FrameProcessor.slnx with src/FrameProcessor (net10.0 Web SDK) and tests/FrameProcessor.Tests (xUnit) plus .gitignore and global.json pinning the .NET 10 SDK. dotnet build, dotnet test, and dotnet format --verify-no-changes all pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
6
src/FrameProcessor/Program.cs
Normal file
6
src/FrameProcessor/Program.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
var app = builder.Build();
|
||||
|
||||
app.MapGet("/", () => "Hello World!");
|
||||
|
||||
app.Run();
|
||||
Reference in New Issue
Block a user