Black.Beard.Schemas 1.0.140

dotnet add package Black.Beard.Schemas --version 1.0.140
                    
NuGet\Install-Package Black.Beard.Schemas -Version 1.0.140
                    
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="Black.Beard.Schemas" Version="1.0.140" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Black.Beard.Schemas" Version="1.0.140" />
                    
Directory.Packages.props
<PackageReference Include="Black.Beard.Schemas" />
                    
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 Black.Beard.Schemas --version 1.0.140
                    
#r "nuget: Black.Beard.Schemas, 1.0.140"
                    
#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 Black.Beard.Schemas@1.0.140
                    
#: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=Black.Beard.Schemas&version=1.0.140
                    
Install as a Cake Addin
#tool nuget:?package=Black.Beard.Schemas&version=1.0.140
                    
Install as a Cake Tool

Black.Beard.Roslyn

Build status

Helpers for compile Csharp with Roslyn. The way use the tool installed on your machine. It does'nt work if dotnet is not installed.

How to install

Use project model for create a project file

NuGet\Install-Package Black.Beard.Projects.Models

Use build for build project

NuGet\Install-Package Black.Beard.Build

Use roslyn for compile without project

NuGet\Install-Package Black.Beard.Roslyn

How to use Roslyn


// Use existing project
var projects = _directoryProject.GetFiles("*.csproj", SearchOption.AllDirectories);

foreach (var item in projects)
{
    var builder = ProjectRoslynBuilderHelper.CreateCsharpBuild(item.FullName, true);
    var result = builder.Build();
    var assembly = result.LoadAssembly();
    var types = assembly.GetExportedTypes();
    var instance = Activator.CreateInstance(types[0]);
}

// Use Roslyn for generate #Csharp
var artifact = new CSharpArtifact("test1")
    .Namespace("namespace1", ns =>
    {
        ns.Class("class1", cls =>
        {
            cls.Property("get1", nameof(String), property =>
            {
                property.AutoGet().AutoSet();
            });
        });
    });

var code = artifact.ToString();

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
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.140 385 4/14/2025
1.0.138 342 4/14/2025
1.0.137 300 4/3/2025
1.0.136 284 4/1/2025
1.0.135 286 4/1/2025
1.0.134 278 4/1/2025
1.0.133 220 1/27/2025
1.0.132 256 12/21/2024
1.0.131 257 12/7/2024
1.0.130 250 11/27/2024
1.0.129 247 11/24/2024
1.0.128 242 11/19/2024
1.0.127 234 11/19/2024
1.0.126 241 11/18/2024
1.0.125 242 11/17/2024
1.0.124 246 11/17/2024
1.0.123 238 11/17/2024
1.0.122 243 11/17/2024
1.0.121 229 11/17/2024
1.0.120 261 10/28/2024
Loading failed