AutoForms 1.3.4

dotnet add package AutoForms --version 1.3.4
                    
NuGet\Install-Package AutoForms -Version 1.3.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AutoForms" Version="1.3.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AutoForms" Version="1.3.4" />
                    
Directory.Packages.props
<PackageReference Include="AutoForms" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AutoForms --version 1.3.4
                    
#r "nuget: AutoForms, 1.3.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AutoForms@1.3.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AutoForms&version=1.3.4
                    
Install as a Cake Addin
#tool nuget:?package=AutoForms&version=1.3.4
                    
Install as a Cake Tool

AutoForms

NuGet Build AutoForms npm Build AutoForms.Client codecov

AutoForms is a system of libraries designed to synchronize a data structure between parts of a web application based on ASP.NET 6 and Angular.

Setup AutoForms for ASP.NET

Install NuGet package

In order to get AutoForms for ASP.NET, you can grab the latest NuGet package or just run

Install-Package AutoForms

Register dependencies to IoC container

Register FormBuilderFactory and other dependencies.

public void ConfigureServices(IServiceCollection services)
{
    services.AddAutoForms();
}

Setup AutoForms for Angular

Install AutoForms client library

Install @auto-forms/client using NPM.

npm install @auto-forms/client

Import AutoFormsModule to AppModule

Add the AutoFormsModule to the AppModule, so you'll be able to inject FormBuilderCllient.

import { AutoFormsModule } from '@auto-forms/client';

@NgModule({
    declarations: [AppComponent],
    imports: [AutoFormsModule.forRoot()],
    bootstrap: [AppComponent]
})
export class AppModule {}

Get Started

To start working with AutoForms, check out the getting started guide.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.3.4 631 7/13/2022
1.3.3 558 7/3/2022
1.3.2 536 6/29/2022
1.3.1 527 6/29/2022
1.3.0 527 6/5/2022
1.2.0 536 6/3/2022
1.1.0 631 5/29/2022
1.0.0 647 5/29/2022
1.0.0-build 294 6/2/2022