DragonFly.ImageWizard 0.9.10

There is a newer version of this package available.
See the version list below for details.
dotnet add package DragonFly.ImageWizard --version 0.9.10
                    
NuGet\Install-Package DragonFly.ImageWizard -Version 0.9.10
                    
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="DragonFly.ImageWizard" Version="0.9.10" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DragonFly.ImageWizard" Version="0.9.10" />
                    
Directory.Packages.props
<PackageReference Include="DragonFly.ImageWizard" />
                    
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 DragonFly.ImageWizard --version 0.9.10
                    
#r "nuget: DragonFly.ImageWizard, 0.9.10"
                    
#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.
#addin nuget:?package=DragonFly.ImageWizard&version=0.9.10
                    
Install DragonFly.ImageWizard as a Cake Addin
#tool nuget:?package=DragonFly.ImageWizard&version=0.9.10
                    
Install DragonFly.ImageWizard as a Cake Tool

DragonFly

Headless CMS based on ASP.NET Core and Blazor

License: MIT Docker

Package Release
DragonFly.Core NuGet
DragonFly.AspNetCore NuGet
DragonFly.API NuGet
DragonFly.Client NuGet
DragonFly.BlockField NuGet
DragonFly.Proxy NuGet
DragonFly.ImageWizard NuGet
DragonFly.MongoDB NuGet
DragonFly.Identity NuGet
DragonFly.ApiKeys NuGet
DragonFly.Permissions NuGet

Getting started

Prerequisites

Create a new project from template

To use the project template you need first to download and install it from NuGet.

dotnet new install DragonFly.Templates

After this you can create the project with:

dotnet new DragonFly

If you have a remote MongoDB instance, you need to add some appsettings:

"MongoDB": {
    "Hostname": "localhost",
    "Database": "DragonFly_App",
    "Port": 27017,
    "Username": "",
    "Password": ""
  },

DragonFly

grafik

Supported fields

  • StringField
  • FloatField
  • BoolField
  • AssetField
  • ReferenceField
  • ComponentField
  • ArrayField
  • DateField
  • IntegerField
  • ColorField
  • GeoLocationField
  • SlugField
  • XmlField
  • HtmlField
  • BlockField (HeadingBlock, TextBlock, HtmlBlock, CodeBlock, ContainerBlock, ColumnBlock, AssetBlock, ReferenceBlock, GridBlock,..)

How to create new content schema and content item

IContentStorage contentStorage = ...;//use MongoStorage or ClientContentService (http client)

//create brand schema
ContentSchema schemaBrand = new ContentSchema("Brand")
                                    .AddString("Name")
                                    .AddSlug("Slug")
                                    .AddTextArea("Description");

//Define schema for product
ContentSchema schemaProduct = new ContentSchema("Product")
                                    .AddReference("Brand")
                                    .AddString("Name", options => options.IsRequired = true)
                                    .AddSlug("Slug")
                                    .AddBool("IsAvailable", options => options.DefaultValue = true)
                                    .AddFloat("Price")
                                    .AddTextArea("Description", options => options.MaxLength = 255)
                                    .AddArray("Attributes", options => options
                                                                        .AddString("Name")
                                                                        .AddString("Value"));

await contentStorage.CreateAsync(schemaProduct);

//create product by schema
ContentItem contentProduct = schemaProduct
                            .CreateContent()
                            .SetReference("Brand", new ContentItem(Guid.Parse(""), schemaBrand))
                            .SetString("Name", "ProductA")
                            .SetBool("IsAvailable", true)
                            .SetFloat("Price", 9.99)
                            .SetTextArea("Description", "...")
                            .AddArrayItem("Attributes", schemaProduct, item => item
                                                                    .SetString("Name", "Size")
                                                                    .SetString("Value", "M"));

await contentStorage.CreateAsync(contentProduct);

DragonFly.AspNetCore

builder.Services.Configure<DragonFlyOptions>(Configuration.GetSection("General"));
builder.Services.Configure<MongoDbOptions>(Configuration.GetSection("MongoDB"));

//add DragonFly services
builder.Services.AddDragonFly()
                  .AddImageWizard()
                  .AddRestApi()
                  .AddMongoDbStorage()
                  .AddMongoDbIdentity()
                  .AddBlockField()
                  .AddApiKeys()
                  .AddPermissions();

var app = builder.Build();

//init DragonFly
await app.InitDragonFly();

if (env.IsDevelopment())
{
  app.UseDeveloperExceptionPage();
  app.UseWebAssemblyDebugging();
}

app.UseDragonFly(x => x             
                  .MapImageWizard()
                  .MapApiKey()
                  .MapIdentity()
                  .MapRestApi()
                  .MapPermission());
app.UseDragonFlyManager();
app.UseRouting();
app.Run();

DragonFly.Client (Blazor)

var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<DragonFly.App.Client.App>("app");

//Register DragonFly components
builder.AddDragonFly()
          .AddRestApi()
          .AddBlockField()
          .AddIdentity()
          .AddApiKeys();

WebAssemblyHost host = builder.Build();

await host.InitDragonFly();
await host.RunAsync();
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
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.0.31 448 3/24/2025
1.0.30 445 3/24/2025
1.0.29 444 3/24/2025
1.0.28 101 2/25/2025
1.0.27 101 2/5/2025
1.0.26 97 1/28/2025
1.0.25 108 1/2/2025
1.0.24 98 12/30/2024
1.0.22 118 11/19/2024
1.0.21 109 11/19/2024
1.0.20 103 11/19/2024
1.0.19 93 11/18/2024
1.0.18 87 11/17/2024
1.0.17 91 11/17/2024
1.0.15 163 4/27/2024
1.0.14 153 3/19/2024
1.0.13 131 3/19/2024
1.0.12 123 3/7/2024
1.0.11 104 3/7/2024
1.0.10 121 3/6/2024
1.0.9 145 3/3/2024
1.0.8 140 2/22/2024
1.0.7 149 2/7/2024
1.0.6 153 1/18/2024
1.0.5 199 12/18/2023
1.0.4 162 12/2/2023
1.0.3 130 11/30/2023
1.0.2 128 11/30/2023
1.0.1 121 11/30/2023
0.9.32 197 8/25/2023
0.9.31 189 7/27/2023
0.9.30 175 7/27/2023
0.9.22 205 6/30/2023
0.9.20 180 6/27/2023
0.9.19 191 6/22/2023
0.9.17 215 5/9/2023
0.9.16 230 4/28/2023
0.9.15 223 4/27/2023
0.9.14 225 4/27/2023
0.9.13 233 4/15/2023
0.9.12 268 3/19/2023
0.9.11 281 3/15/2023
0.9.10 290 3/5/2023
0.9.9 283 3/3/2023
0.9.8 264 3/2/2023
0.9.7 329 1/29/2023
0.9.6 311 1/27/2023
0.9.5 374 1/25/2023
0.9.3 371 1/2/2023
0.9.2 326 1/2/2023
0.9.0 339 12/28/2022
0.8.3 369 12/19/2022
0.8.2 321 12/18/2022
0.4.5-alpha 185 10/1/2022
0.4.4-alpha 213 9/22/2022
0.4.3-alpha 191 9/22/2022
0.4.2-alpha 180 9/21/2022
0.4.1-alpha 180 9/21/2022
0.3.2 438 8/14/2022
0.3.1 453 8/14/2022
0.3.0 497 3/20/2022
0.2.5 503 1/31/2022
0.2.4 525 11/22/2021
0.2.2 595 11/11/2021
0.2.1 603 11/10/2021
0.2.0 449 11/10/2021