net9-update-refactorings #1

Merged
michael merged 17 commits from net9-update-refactorings into master 2025-01-30 06:33:51 +00:00
Showing only changes of commit 7992e3de0f - Show all commits

View File

@ -112,6 +112,8 @@ class Build : NukeBuild
Target Publish => _ => _ Target Publish => _ => _
.DependsOn(Pack, CreateAndPushGitTag) .DependsOn(Pack, CreateAndPushGitTag)
.Executes(() => .Executes(() =>
{
try
{ {
DotNetTasks.DotNetNuGetAddSource(c => c DotNetTasks.DotNetNuGetAddSource(c => c
.EnableStorePasswordInClearText() .EnableStorePasswordInClearText()
@ -119,6 +121,11 @@ class Build : NukeBuild
.SetPassword(GiteaPackageOwnerPassword) .SetPassword(GiteaPackageOwnerPassword)
.SetName("Gitea") .SetName("Gitea")
.SetSource($"{GiteaNugetSourceName}/index.json")); .SetSource($"{GiteaNugetSourceName}/index.json"));
}
catch (Exception e)
{
Log.Warning("Error adding Gitea source: {e}", e);
}
DotNetTasks.DotNetNuGetPush(s => s DotNetTasks.DotNetNuGetPush(s => s
.SetSource($"{GiteaNugetSourceName}/symbols") .SetSource($"{GiteaNugetSourceName}/symbols")