From 7fc48ec61341e2da0f1c7d98e2342234e84e65eb Mon Sep 17 00:00:00 2001 From: nsnail Date: Thu, 15 Dec 2022 10:35:13 +0800 Subject: [PATCH] --- Directory.Build.props | 5 ++--- build.cake | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 8b34486..54e6a10 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,11 +1,10 @@ enable - ../build - ../build + ../dist + ../dist $(BaseOutputPath)/$(MSBuildProjectName)/bin $(BaseIntermediateOutputPath)/$(MSBuildProjectName)/obj $(BaseIntermediateOutputPath)/$(MSBuildProjectName)/obj - true \ No newline at end of file diff --git a/build.cake b/build.cake index b0dde1e..f6d5966 100644 --- a/build.cake +++ b/build.cake @@ -9,7 +9,7 @@ var runtime = Argument("runtime","win-x64"); Task("Clean") .Does(context => { - context.CleanDirectory("./build"); + context.CleanDirectory("./dist"); }); Task("Build")