fixed Project file reference after the structure change
Some checks failed
CI Build / CI Build API (pull_request) Failing after 32s

This commit is contained in:
Michael Samorokov 2025-01-29 23:22:57 -07:00
parent 30726d7aa1
commit 47bede52d1
2 changed files with 20 additions and 2 deletions

View File

@ -26,9 +26,9 @@
"enum": [ "enum": [
"Clean", "Clean",
"Compile", "Compile",
"CreateAndPushGitTag",
"Pack", "Pack",
"Publish", "Publish",
"Restore",
"Test" "Test"
] ]
}, },
@ -103,6 +103,10 @@
"allOf": [ "allOf": [
{ {
"properties": { "properties": {
"BuildNumber": {
"type": "string",
"description": "Build number override"
},
"Configuration": { "Configuration": {
"type": "string", "type": "string",
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)", "description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)",
@ -111,6 +115,20 @@
"Release" "Release"
] ]
}, },
"GiteaNugetSourceName": {
"type": "string",
"description": "Gitea Nuget package source name"
},
"GiteaPackageOwnerPassword": {
"type": "string",
"description": "Gitea package owner password",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
},
"GiteaPackageOwnerUser": {
"type": "string",
"description": "Gitea package owner user",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
},
"NuGetApiKey": { "NuGetApiKey": {
"type": "string", "type": "string",
"description": "NuGet API key" "description": "NuGet API key"

View File

@ -101,7 +101,7 @@ class Build : NukeBuild
{ {
DotNetTasks.DotNetPack(s => s DotNetTasks.DotNetPack(s => s
.SetProject(SourceDirectory / "Provider" / $"{LibraryProjectName}.csproj") .SetProject(SourceDirectory / "Universley.OrleansContrib.StreamsProvider.Redis" / $"{LibraryProjectName}.csproj")
.SetConfiguration(Configuration) .SetConfiguration(Configuration)
.SetOutputDirectory(NuGetPackagesDirectory) .SetOutputDirectory(NuGetPackagesDirectory)
.SetVersion(Version) .SetVersion(Version)