diff --git a/.gitignore b/.gitignore index 22041d1..d5d43c3 100644 --- a/.gitignore +++ b/.gitignore @@ -176,6 +176,7 @@ TestResult.xml testCaseCollection.xml deploy lib +build-results test-results package images diff --git a/NUnit.Engine.Api.slnx b/NUnit.Engine.Api.slnx index ce3a197..6c037cf 100644 --- a/NUnit.Engine.Api.slnx +++ b/NUnit.Engine.Api.slnx @@ -1,3 +1,37 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/build.cake b/build.cake index b251a40..e89c463 100644 --- a/build.cake +++ b/build.cake @@ -1,19 +1,15 @@ // Load the recipe -#load nuget:?package=NUnit.Cake.Recipe&version=2.0.0-beta.4.2 +#load nuget:?package=NUnit.Cake.Recipe&version=2.0.0-beta.4.3 // Comment out above line and uncomment below for local tests of recipe changes //#load ../NUnit.Cake.Recipe/src/NUnit.Cake.Recipe/content/*.cake -// Load additional cake files -#load KnownExtensions.cake - // Initialize BuildSettings BuildSettings.Initialize( Context, title: "NUnit Engine API", githubRepository: "NUnit.Engine.Api", - solutionFile: "NUnit.Engine.Api.sln", - nugetVerbosity: NuGetVerbosity.Detailed, - buildWithMSBuild: true); + solutionFile: "NUnit.Engine.Api.slnx", + buildWithMSBuild: false); ////////////////////////////////////////////////////////////////////// // INDIVIDUAL PACKAGE DEFINITIONS diff --git a/global.json b/global.json index 285b9d3..545c92c 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.416", + "version": "10.0.302", "rollForward": "latestFeature" } }