DragonFly.ImageWizard
0.9.8
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package DragonFly.ImageWizard --version 0.9.8
NuGet\Install-Package DragonFly.ImageWizard -Version 0.9.8
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.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DragonFly.ImageWizard --version 0.9.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DragonFly.ImageWizard, 0.9.8"
#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 DragonFly.ImageWizard as a Cake Addin #addin nuget:?package=DragonFly.ImageWizard&version=0.9.8 // Install DragonFly.ImageWizard as a Cake Tool #tool nuget:?package=DragonFly.ImageWizard&version=0.9.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
DragonFly
Headless CMS based on ASP.NET Core and Blazor
Getting started
Prerequisites
- .NET 7.0 SDK
- Visual Studio 2022
- MongoDB instance
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
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 | Versions 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- DragonFly.AspNetCore (>= 0.9.8)
- ImageWizard.Client (>= 3.7.4)
- ImageWizard.Core (>= 3.7.4)
- ImageWizard.DocNET (>= 3.7.4)
- ImageWizard.ImageSharp (>= 3.7.4)
- ImageWizard.OpenGraph (>= 3.7.4)
- ImageWizard.SvgNet (>= 3.7.4)
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.15 | 147 | 4/27/2024 |
1.0.14 | 131 | 3/19/2024 |
1.0.13 | 112 | 3/19/2024 |
1.0.12 | 109 | 3/7/2024 |
1.0.11 | 87 | 3/7/2024 |
1.0.10 | 107 | 3/6/2024 |
1.0.9 | 127 | 3/3/2024 |
1.0.8 | 117 | 2/22/2024 |
1.0.7 | 130 | 2/7/2024 |
1.0.6 | 136 | 1/18/2024 |
1.0.5 | 186 | 12/18/2023 |
1.0.4 | 149 | 12/2/2023 |
1.0.3 | 118 | 11/30/2023 |
1.0.2 | 116 | 11/30/2023 |
1.0.1 | 110 | 11/30/2023 |
0.9.32 | 187 | 8/25/2023 |
0.9.31 | 180 | 7/27/2023 |
0.9.30 | 165 | 7/27/2023 |
0.9.22 | 195 | 6/30/2023 |
0.9.20 | 172 | 6/27/2023 |
0.9.19 | 182 | 6/22/2023 |
0.9.17 | 201 | 5/9/2023 |
0.9.16 | 215 | 4/28/2023 |
0.9.15 | 210 | 4/27/2023 |
0.9.14 | 212 | 4/27/2023 |
0.9.13 | 218 | 4/15/2023 |
0.9.12 | 252 | 3/19/2023 |
0.9.11 | 266 | 3/15/2023 |
0.9.10 | 274 | 3/5/2023 |
0.9.9 | 269 | 3/3/2023 |
0.9.8 | 251 | 3/2/2023 |
0.9.7 | 312 | 1/29/2023 |
0.9.6 | 293 | 1/27/2023 |
0.9.5 | 357 | 1/25/2023 |
0.9.3 | 352 | 1/2/2023 |
0.9.2 | 308 | 1/2/2023 |
0.9.0 | 318 | 12/28/2022 |
0.8.3 | 350 | 12/19/2022 |
0.8.2 | 304 | 12/18/2022 |
0.4.5-alpha | 166 | 10/1/2022 |
0.4.4-alpha | 196 | 9/22/2022 |
0.4.3-alpha | 173 | 9/22/2022 |
0.4.2-alpha | 163 | 9/21/2022 |
0.4.1-alpha | 164 | 9/21/2022 |
0.3.2 | 417 | 8/14/2022 |
0.3.1 | 430 | 8/14/2022 |
0.3.0 | 473 | 3/20/2022 |
0.2.5 | 477 | 1/31/2022 |
0.2.4 | 501 | 11/22/2021 |
0.2.2 | 568 | 11/11/2021 |
0.2.1 | 578 | 11/10/2021 |
0.2.0 | 422 | 11/10/2021 |