Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ TestResult.xml
testCaseCollection.xml
deploy
lib
build-results
test-results
package
images
Expand Down
36 changes: 35 additions & 1 deletion NUnit.Engine.Api.slnx
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
<Solution>
<Project Path="src/NUnitEngine/nunit.engine.api/nunit.engine.api.csproj" />
<Folder Name="/Solution Items/">
<File Path=".editorconfig" />
<File Path=".gitattributes" />
<File Path=".gitignore" />
<File Path="BREAKING_CHANGES.md" />
<File Path="build.cake" />
<File Path="build.cmd" />
<File Path="build.ps1" />
<File Path="build.sh" />
<File Path="BUILDING.md" />
<File Path="CHANGES.txt" />
<File Path="CONTRIBUTING.md" />
<File Path="GitReleaseManager.yaml" />
<File Path="global.json" />
<File Path="KnownExtensions.cake" />
<File Path="LICENSE.txt" />
<File Path="MixedTests.nunit" />
<File Path="NetCoreTests.nunit" />
<File Path="NOTICES.txt" />
<File Path="NuGet.config" />
<File Path="nunit.ico" />
<File Path="nunit_256.png" />
<File Path="package-tests.cake" />
<File Path="README.md" />
<File Path="src/Directory.Build.props" />
<File Path="src/Nullable.props" />
<File Path="src/StyleCop.Analyzers.globalconfig" />
<File Path="VERSIONING.md" />
</Folder>
<Folder Name="/Solution Items/.github/" />
<Folder Name="/Solution Items/.github/Workflows/">
<File Path=".github/workflows/NUnit.Engine.Api.CI.yml" />
</Folder>
<Project Path="src/NUnit.Engine.Api.Tests/NUnit.Engine.Api.Tests.csproj" />
<Project Path="src/NUnit.Engine.Api/NUnit.Engine.Api.csproj" />
</Solution>
10 changes: 3 additions & 7 deletions build.cake
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.416",
"version": "10.0.302",
"rollForward": "latestFeature"
}
}