RoxyBuildTool.Model 0.1.3

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package RoxyBuildTool.Model --version 0.1.3
                    
NuGet\Install-Package RoxyBuildTool.Model -Version 0.1.3
                    
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="RoxyBuildTool.Model" Version="0.1.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RoxyBuildTool.Model" Version="0.1.3" />
                    
Directory.Packages.props
<PackageReference Include="RoxyBuildTool.Model" />
                    
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 RoxyBuildTool.Model --version 0.1.3
                    
#r "nuget: RoxyBuildTool.Model, 0.1.3"
                    
#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 RoxyBuildTool.Model@0.1.3
                    
#: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=RoxyBuildTool.Model&version=0.1.3
                    
Install as a Cake Addin
#tool nuget:?package=RoxyBuildTool.Model&version=0.1.3
                    
Install as a Cake Tool

RoxyBuildTool

RoxyBuildTool is a strongly typed, in-process build description system for C++. Build rules are compiled C# code, and workspace generators consume the same immutable native configuration and action models.

Version 0.1 is under active development. The implemented scope is Windows x64, MSVC, .NET 10 for the rules host, C++-only Visual Studio workspace generation, and compile_commands.json generation.

Package roles

  • RoxyBuildTool provides the authoring facade and command host.
  • RoxyBuildTool.Platforms.Windows registers Windows and MSVC support.
  • RoxyBuildTool.Generators.VisualStudio generates C++-only Visual Studio workspaces.
  • RoxyBuildTool.Generators.CompilationDatabase generates compilation databases.

Host example

return await BuildToolApp.Create(args)
    .WithWorkspaceRoot("..")
    .DiscoverRulesFromAssemblyContaining<MyBuildRules>()
    .UseWindowsPlatform()
    .UseVisualStudio()
    .UseCompilationDatabase()
    .DefaultGenerate<MyWorkspace>(request => request.Workspace(
        WorkspaceGenerators.VisualStudio2022,
        WorkspaceGenerators.CompilationDatabase))
    .RunAsync();

RoxyBuildTool packages are not yet published to a public feed.

Source: https://github.com/EvanLuo42/RoxyBuildTool

License: MIT

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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