fixed Project file reference after the structure change
Some checks failed
CI Build / CI Build API (pull_request) Failing after 32s
Some checks failed
CI Build / CI Build API (pull_request) Failing after 32s
This commit is contained in:
parent
30726d7aa1
commit
47bede52d1
@ -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"
|
||||||
|
|||||||
@ -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)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user