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.
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.
// Install AutoForms as a Cake Addin
#addin nuget:?package=AutoForms&version=1.3.4

// Install AutoForms as a Cake Tool
#tool nuget:?package=AutoForms&version=1.3.4

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. 
.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 451 7/13/2022
1.3.3 405 7/3/2022
1.3.2 389 6/29/2022
1.3.1 376 6/29/2022
1.3.0 375 6/5/2022
1.2.0 380 6/3/2022
1.1.0 467 5/29/2022
1.0.0 403 5/29/2022
1.0.0-build 143 6/2/2022