Skip to content

Commit

Permalink
(chocolatey#18) Update Chocolatey.Cake.Recipe version
Browse files Browse the repository at this point in the history
Update to use the new Chocolatey.Cake.Recipe version.
Suppress creation of SolutionVersion.cs
Update Readme with current information about running tests.
  • Loading branch information
corbob committed May 25, 2022
1 parent 4e2c9a4 commit 23e9161
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@ A fork of the original Rhino.Licensing software licensing framework used for [Ch
## Building the Project

Visual Studio or VS Code can be used to build the solution.
Note that the `Rhino.Licensing.AdminTool*` projects are not currently part of the solution or presently being maintained.

A full build, test, and pack run can be started using the `build.ps1` PowerShell script.

## Testing

Running the `build.ps1` will run unit tests for the project.
Running `build.ps1 -Target Test` will run unit tests for the project.

## Acknowledgements

Expand Down
5 changes: 3 additions & 2 deletions recipe.cake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#load nuget:?package=Chocolatey.Cake.Recipe&version=0.13.3
#load nuget:?package=Chocolatey.Cake.Recipe&version=0.14.0


///////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -38,7 +38,8 @@ BuildParameters.SetParameters(
treatWarningsAsErrors: false,
testDirectoryPath: "./test",
shouldRunDotNetPack: true,
getProjectsToPack: getProjectsToPack);
getProjectsToPack: getProjectsToPack,
shouldGenerateSolutionVersionCSharpFile: false);
BuildParameters.PrintParameters(Context);
Expand Down

0 comments on commit 23e9161

Please sign in to comment.