AppEngine is a lightweight development engine for .NET web applications, designed to simplify and provide essential tools for developing web apps. It offers a collection of utilities, extensions, and validation mechanisms to streamline the development process and enhance productivity.
AppEngine/
├── .github/ # GitHub configuration files
│ ├── instructions/ # Instructions for contributing and using the project
│ └── workflows/ # GitHub Actions workflows for CI/CD
│
├── src/
│ ├── TinyAppEngine/ # Core functionalities and utilities
│ │ ├── DependencyInjection/ # Dependency injection configurations and related classes
│ │ ├── Enums/ # Enumeration types used across the project
│ │ ├── Extensions/ # Extension methods for various classes and types
│ │ ├── Logging/ # Logging utilities and configurations
│ │ ├── Middleware/ # Custom middleware components
│ │ ├── Routing/ # Routing configurations and related classes
│ │ ├── Settings/ # Configuration classes and settings management
│ │ └── Versioning/ # API versioning configurations and related classes
│ │ ├── Options/ # API versioning options and configuration classes
│ │ └── Transformers/ # API versioning transformers and related classes
│ │
│ └── Directory.Build.props # Shared MSBuild properties
│
├── .editorconfig # Code style and formatting rules
├── .gitignore # Git ignore file
├── LICENSE # License information
├── README.md # Project documentation
└── AppEngine.slnx # Solution file for the entire project
- .NET 10.0 SDK (latest version)
The libraries are available on Baget, just search for TinyAppEngine in the Package Manager GUI or run the following command in the .NET CLI:
dotnet add package TinyAppEngineNote
It is necessary to configure nuget.config in order to be able to install nuget packages from Baget without problems, below is an example of configuration
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="Baget" value="http://nuget.aepserver.it/v3/index.json" allowInsecureConnections="true" />
</packageSources>
<!-- Opzionale: limitare quali pacchetti vengono risolti da quale sorgente -->
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="Baget">
<package pattern="TinyAppEngine*" /><!-- Tutti i pacchetti che iniziano con TinyAppEngine -->
</packageSource>
</packageSourceMapping>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<config>
<!-- esempio: personalizzare la cartella dei pacchetti (opzionale) -->
<!-- <add key="globalPackagesFolder" value="%USERPROFILE%\.nuget\packages" /> -->
</config>
</configuration>This project is licensed under the MIT License - see the LICENSE file for details.