: Find community-driven templates, such as the ng-zorro-antd frontend template. Key Features You Don't Have to Build
Paid customers receive access to a private GitHub repository containing:
| Framework | GitHub Stars | Tech Stack | Multi-tenancy Ready | |-----------|--------------|------------|---------------------| | (new) | 12k+ | ASP.NET Core + Blazor/Angular | Yes (commercial tier) | | Orchard Core | 7k+ | ASP.NET Core | CMS-focused | | SimplCommerce | 4k+ | ASP.NET Core | E-commerce | | eShopOnContainers (Microsoft) | 10k+ | ASP.NET Core | No (microservices demo) | asp.net zero github
To further customize your workflow, consider exploring to map out your ASP.NET Zero entity creation cycles or integrating Dependabot to keep your non-commercial NuGet and NPM packages automatically updated. Share public link
: Customers gain access to the private repository to download the full source code, which includes pre-built modules for identity management, multi-tenancy, and UI templates. : Find community-driven templates, such as the ng-zorro-antd
ASP.NET Zero projects are modular, often combining a .NET Web API with an Angular or React frontend. Use GitHub Actions to build separate test pipelines for the backend C# code and the frontend JavaScript/TypeScript applications simultaneously. Conclusion
Have you used ASP.NET Zero in production? Did you struggle with the initial GitHub setup? Let us know in the comments below. Did you struggle with the initial GitHub setup
name: Build and Test ASP.NET Zero on: push: branches: [ develop, main ] pull_request: branches: [ develop ] jobs: build-backend: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup .NET uses: actions/setup-dotnet@v3 with: dotnet-version: '8.0.x' - name: Restore dependencies run: dotnet restore src/MyCompany.SaaSApp.sln - name: Build Backend run: dotnet build src/MyCompany.SaaSApp.sln --no-restore --configuration Release build-frontend: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install Frontend Dependencies run: | cd src/MyCompany.SaaSApp.Angular npm install - name: Build Frontend run: | cd src/MyCompany.SaaSApp.Angular npm run build -- --configuration production Use code with caution.
Since the code lives on GitHub, it integrates seamlessly with , Azure DevOps, and Jenkins. You can easily set up automated testing and deployment pipelines for your ASP.NET Zero projects. How to Get Started
A "Feature" is not complete without permissions.
It provides a pre-built, fully functional application with:

GET STARTED