| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A simple ASP.NET Core application demonstrating the new .NET 10 file-based application feature with Minimal APIs. This single-file approach provides a clean and simple project structure, perfect for small applications, prototypes, and learning purposes.
Click the button below to create a workspace from this template:
The server should run automatically when you start the workspace. To run it manually, use the following command in the terminal:
dotnet run Program.csThe application will start on port 3000 by default (configurable via PORT environment variable).
├── Program.cs # Main application file with embedded SDK configuration ├── .idx/ # Firebase Studio (IDX) configuration │ ├── dev.nix # Nix-based development environment │ └── mcp.json # MCP server configuration ├── .vscode/ # VS Code settings and extensions ├── GEMINI.md # Gemini AI context file └── README.md # This file
The Program.cs file uses .NET 10's file-based application feature with special directives:
#!/usr/bin/env dotnet
#:sdk Microsoft.NET.Sdk.Web
#:property PublishAot=false| Variable | Default | Description |
|---|---|---|
| PORT | 3000 | The port number the server listens on |
| TARGET | World | The greeting target (e.g., "Hello World!") |
⚠️ Coming Soon: Docker container support is currently on hold due to version compatibility issues. This feature will be available in a future update.
| Back | FazBrowse Home | New Git URL |