net9-update-refactorings #1

Merged
michael merged 17 commits from net9-update-refactorings into master 2025-01-30 06:33:51 +00:00
2 changed files with 20 additions and 2 deletions
Showing only changes of commit 47bede52d1 - Show all commits

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)