From e7bad2207cd7b3421e18bfd9a2cead271aefdf55 Mon Sep 17 00:00:00 2001 From: nsnail Date: Thu, 19 Jan 2023 16:03:02 +0800 Subject: [PATCH] =?UTF-8?q?cake=E8=84=9A=E6=9C=AC=E6=9C=89=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.cake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.cake b/build.cake index 78465e5..ec172e3 100644 --- a/build.cake +++ b/build.cake @@ -15,7 +15,7 @@ Task("Build") .IsDependentOn("Clean") .Does(context => { - DotNetPublish("./src/dot.csproj", new DotNetPublishSettings { + DotNetPublish("./src/NSCodeAnalysis.csproj", new DotNetPublishSettings { Configuration = configuration, Framework = framework, }); @@ -89,7 +89,7 @@ Task("Publish-NuGet") } // Publish to GitHub Packages - foreach(var file in context.GetFiles("./.artifacts/*.nupkg")) + foreach(var file in context.GetFiles("./dist/NSCodeAnalysis/bin/*.*")) { context.Information("Publishing {0}...", file.GetFilename().FullPath); DotNetNuGetPush(file.FullPath, new DotNetNuGetPushSettings