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": [
"Clean",
"Compile",
"CreateAndPushGitTag",
"Pack",
"Publish",
"Restore",
"Test"
]
},
@ -103,6 +103,10 @@
"allOf": [
{
"properties": {
"BuildNumber": {
"type": "string",
"description": "Build number override"
},
"Configuration": {
"type": "string",
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)",
@ -111,6 +115,20 @@
"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": {
"type": "string",
"description": "NuGet API key"

View File

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