VOOZH about

URL: https://www.nuget.org/packages/Black.Beard.Schemas/

⇱ NuGet Gallery | Black.Beard.Schemas 1.0.140




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
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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 Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows 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 369 4/14/2025
1.0.138 334 4/14/2025
1.0.137 291 4/3/2025
1.0.136 276 4/1/2025
1.0.135 280 4/1/2025
1.0.134 270 4/1/2025
1.0.133 213 1/27/2025
1.0.132 248 12/21/2024
1.0.131 248 12/7/2024
1.0.130 243 11/27/2024
1.0.129 240 11/24/2024
1.0.128 233 11/19/2024
1.0.127 225 11/19/2024
1.0.126 234 11/18/2024
1.0.125 235 11/17/2024
1.0.124 237 11/17/2024
1.0.123 230 11/17/2024
1.0.122 234 11/17/2024
1.0.121 218 11/17/2024
1.0.120 254 10/28/2024
Loading failed