Black.Beard.Build 1.0.73

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

Sample the use Black.Beard.Build for create a csproj


    //Usings
    using Bb.Build;
    using System;
    using System.IO;

    // create a folder for store the generated project file
    var name = "Black.Beard.tests";
    var dir = new DirectoryInfo(Path.Combine(this._baseDirectory.FullName, name));

    var project = MsProjectsForBuild
                    .CreateProject((name, dir)        
                    .Sdk(ProjectSdk.MicrosoftNETSdk)    // Specify the target build

                    .SetPropertyGroup(c =>              // set the properies of the build
                    {
                        c.TargetFramework(TargetFramework.Net6)
                         .RootNamespace("Bb")
                         .Description("My description")
                         .RepositoryUrl(new System.Uri("http://github.com"))
                        ;
                    })

                    .Packages(p =>                      // Reference packages
                    {
                        p.PackageReference("Black.Beard.ComponentModel", new Version("1.0.36"))
                         .PackageReference("Black.Beard.Helpers.ContentLoaders", new Version("1.0.8"))
                        ;

                    });

    // Build
    var result = project.Build(inMemory: true, load: true);

    // fetch the new assembly
    var assembly = project.Assembly;

or the helper


    var project = MsProjects.CreateCsProject(dir.FullName, name, 
    TargetFramework.Net6, 
    "Bb"                
    )
    .SetPropertyGroup(a =>
    {
        a.Description("MyDescription");
    })
    .Packages(p =>
    {
        p.PackageReference("Black.Beard.ComponentModel", new Version("1.0.36"))
         .PackageReference("Black.Beard.Helpers.ContentLoaders", new Version("1.0.8"))
        ;
    
    });

This way use Roslyn for generate the assembly


    // Use NJsonSchema for generate json schema
    JsonSchema schema = JsonSchema.FromType(typeof(Sample1));

    // Helper for manipulate codeDom object
    var samples = "CodeDOMSample".ToNamespace()
        .Import("System")       // append usings

        .AppendPoco(schema)     // add a poco class from schema

        .ToCSharp(Path.Combine(_dir.FullName, "class1.cs")) // Generate csharp code
        ;

    // compile
    AssemblyResult assembly = GetCsharpBuilder(samples.FullName);

    // consumme the result assembly
    if (assembly.Success)
    {
        var ass = assembly.LoadAssembly();
        var type = ass.GetTypes().First(c => c.Name == "Sample1");
        Assert.NotNull(type);
    
        var property = type.GetProperties().FirstOrDefault(c => nameof(Sample1.Name) == c.Name);
        Assert.NotNull(property);
    
    }
    else
    {
        var payload = File.ReadAllText(samples.FullName);
        throw new Exception();
    }


    private static Bb.Compilers.AssemblyResult GetCsharpBuilder(string filepathCode)
    {

        var fileInfo = new FileInfo(filepathCode);

        // Build assembly

        Action<CSharpCompilationOptions> action = (r) =>
        {

        };

        BuildCSharp builder = new BuildCSharp()
        {
            ResolveAssembliesInCode = true,
            Debug = true,
            LanguageVersion = LanguageVersion.CSharp7,
        }
        .AddSource(fileInfo)
        .Suppress("CS1702", "CS1998")
        ;

        // System.Collections
        builder.References.AddRange(
            typeof(object),
            typeof(RequiredAttribute)
        );

        var assembly = builder.Build();
        return assembly;

    }        




var builder = ProjectRoslynBuilderHelper.CreateCsharpBuild("project.csproj", true);
    var result = builder.Build();

Product Compatible and additional computed target framework versions.
.NET 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.  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 238 4/14/2025
1.0.138 217 4/14/2025
1.0.137 188 4/3/2025
1.0.136 176 4/1/2025
1.0.135 180 4/1/2025
1.0.134 178 4/1/2025
1.0.133 129 1/27/2025
1.0.132 150 12/21/2024
1.0.131 142 12/7/2024
1.0.130 131 11/27/2024
1.0.129 136 11/24/2024
1.0.128 126 11/19/2024
1.0.127 127 11/19/2024
1.0.126 127 11/18/2024
1.0.125 129 11/17/2024
1.0.124 131 11/17/2024
1.0.123 126 11/17/2024
1.0.122 130 11/17/2024
1.0.121 127 11/17/2024
1.0.120 135 10/28/2024
1.0.119 149 5/3/2024
1.0.118 141 5/2/2024
1.0.117 176 4/7/2024
1.0.116 147 4/6/2024
1.0.115 159 4/6/2024
1.0.114 173 4/3/2024
1.0.113 156 3/31/2024
1.0.112 178 3/19/2024
1.0.111 170 3/16/2024
1.0.110 174 3/16/2024
1.0.109 164 3/15/2024
1.0.108 172 3/13/2024
1.0.107 167 3/12/2024
1.0.106 146 3/9/2024
1.0.105 168 3/6/2024
1.0.104 170 3/5/2024
1.0.103 165 3/4/2024
1.0.102 161 3/4/2024
1.0.101 157 3/4/2024
1.0.100 161 3/4/2024
1.0.99 172 3/3/2024
1.0.98 163 2/29/2024
1.0.97 165 2/29/2024
1.0.96 163 2/29/2024
1.0.95 164 2/27/2024
1.0.94 154 2/26/2024
1.0.93 165 2/25/2024
1.0.92 165 2/24/2024
1.0.91 190 2/24/2024
1.0.90 160 2/24/2024
1.0.89 175 2/24/2024
1.0.88 157 2/24/2024
1.0.87 171 2/23/2024
1.0.86 164 2/23/2024
1.0.85 165 2/23/2024
1.0.84 166 2/23/2024
1.0.83 178 2/23/2024
1.0.82 166 2/23/2024
1.0.81 171 2/22/2024
1.0.80 164 2/22/2024
1.0.79 152 2/22/2024
1.0.78 153 2/22/2024
1.0.77 175 2/21/2024
1.0.76 162 2/19/2024
1.0.75 154 2/19/2024
1.0.74 156 2/18/2024
1.0.73 157 2/17/2024
1.0.72 266 12/12/2023
1.0.70 230 10/17/2023
1.0.69 168 10/17/2023
1.0.68 184 10/17/2023
1.0.67 189 10/16/2023
1.0.66 177 10/16/2023
1.0.65 186 10/13/2023
1.0.64 167 10/10/2023
1.0.63 175 9/13/2023
1.0.62 200 7/31/2023
1.0.61 199 7/28/2023
1.0.60 201 7/28/2023
1.0.59 201 7/28/2023
1.0.58 204 7/28/2023
1.0.57 225 7/28/2023
1.0.56 193 7/27/2023
1.0.55 207 7/27/2023
1.0.54 230 7/27/2023
1.0.53 209 7/27/2023
1.0.52 232 7/27/2023
1.0.51 229 7/25/2023
1.0.50 227 7/25/2023
1.0.49 238 7/4/2023
1.0.48 235 6/30/2023
1.0.47 216 6/30/2023
1.0.45 241 6/17/2023
1.0.44 235 6/17/2023
1.0.43 237 6/17/2023
1.0.42 251 6/6/2023
1.0.41 246 6/5/2023
1.0.40 236 6/5/2023
1.0.39 221 6/5/2023
1.0.38 238 5/31/2023
1.0.37 220 5/30/2023
1.0.36 233 5/30/2023
1.0.35 234 5/30/2023
1.0.33 223 5/30/2023
1.0.32 229 5/30/2023
1.0.31 249 5/30/2023
1.0.30 258 5/29/2023
1.0.29 245 5/25/2023
1.0.28 246 5/24/2023
1.0.27 250 5/18/2023
1.0.20 223 5/14/2023
1.0.18 578 5/18/2022
1.0.17 597 5/17/2022
1.0.16 572 5/17/2022
1.0.15 569 4/3/2022