Yaaf.AdvancedBuilding 0.2.0

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

Yaaf.AdvancedBuilding is a loose collection of build scripts. The benefit is that you can automatically update your build by updating this package, when you don't need your own crazy build script. But even than it is possible that you could re-use some scripts within this package.

There are no supported framework assets in this 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
0.14.1 7,835 6/24/2016
0.14.0 1,280 6/19/2016
0.13.3 1,225 6/18/2016
0.13.2 1,323 3/6/2016
0.13.1 1,268 3/6/2016
0.13.0 1,264 3/6/2016
0.12.4-alpha1 1,080 2/6/2016
0.12.3 1,328 2/5/2016
0.12.2 1,274 1/23/2016
0.12.0 1,505 1/17/2016
0.11.8 2,043 1/14/2016
0.11.7 1,322 1/13/2016
0.11.6 1,273 12/24/2015
0.11.6-alpha1 1,067 12/23/2015
0.11.5 2,116 12/2/2015
0.11.4 1,384 11/24/2015
0.11.3 1,289 11/20/2015
0.11.2 1,342 11/19/2015
0.11.1 1,277 11/8/2015
0.11.0 1,335 11/7/2015
0.10.1-alpha1 1,053 10/20/2015
0.10.0 1,298 10/18/2015
0.9.3 1,511 9/28/2015
0.9.3-alpha2 1,206 9/20/2015
0.9.3-alpha1 1,195 9/20/2015
0.9.2 1,372 9/13/2015
0.9.1 1,352 9/6/2015
0.9.0 1,367 9/5/2015
0.8.0 1,352 8/19/2015
0.7.2 1,629 8/8/2015
0.7.1 1,572 8/8/2015
0.7.0 1,465 8/2/2015
0.6.5 1,490 8/1/2015
0.6.4 1,680 5/3/2015
0.6.3 1,443 5/3/2015
0.6.2 1,561 4/29/2015
0.6.1 1,593 4/26/2015
0.6.0 1,587 4/26/2015
0.5.5 1,703 4/21/2015
0.5.4 1,552 4/1/2015
0.5.3 1,447 3/27/2015
0.5.2 1,471 3/25/2015
0.5.1 1,671 3/23/2015
0.5.0 1,578 3/21/2015
0.4.0 1,479 3/20/2015
0.3.6 1,455 3/20/2015
0.3.5 1,398 3/20/2015
0.3.4 1,625 3/5/2015
0.3.3 1,354 3/5/2015
0.3.2 1,365 3/5/2015
0.3.1 1,801 3/1/2015
0.3.0 1,576 2/28/2015
0.2.1 1,414 1/29/2015
0.2.0 1,388 1/28/2015
0.1.4 1,325 1/24/2015
0.1.3 1,345 1/24/2015
0.1.2 1,263 1/23/2015
0.1.1 1,248 1/23/2015
0.1.0 1,232 1/22/2015

BREAKING: Redesigned how `buildConfig.fsx` has to be written!
Now you need to implement a BuildConfiguration record type, this helps (in the future)
that builds don't break when new features are introduced.
This also allows us to set a lot of defaults for you.
- you need to set `buildConfig` to a BuildConfiguration instance (all other variables are now ignored).
- You can see the docs or look into `buildConfigDef.fsx` for a definition.
- You need to update your `build.fsx` and `generateDocs.fsx` and add
`#load "packages/Yaaf.AdvancedBuilding/content/buildConfigDef.fsx"`
on the top (or use the latest from the package (see Quick-start tutorial)).
Implemented initial project and solution generation.
- Can be enabled with `EnableProjectFileCreation`