This commit is contained in:
2022-12-15 10:35:13 +08:00
parent 0e07289747
commit 7fc48ec613
2 changed files with 3 additions and 4 deletions

View File

@ -1,11 +1,10 @@
<Project>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<BaseOutputPath>../build</BaseOutputPath>
<BaseIntermediateOutputPath>../build</BaseIntermediateOutputPath>
<BaseOutputPath>../dist</BaseOutputPath>
<BaseIntermediateOutputPath>../dist</BaseIntermediateOutputPath>
<OutputPath>$(BaseOutputPath)/$(MSBuildProjectName)/bin</OutputPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)/$(MSBuildProjectName)/obj</IntermediateOutputPath>
<MSBuildProjectExtensionsPath>$(BaseIntermediateOutputPath)/$(MSBuildProjectName)/obj</MSBuildProjectExtensionsPath>
<MSBuildTreatWarningsAsErrors>true</MSBuildTreatWarningsAsErrors>
</PropertyGroup>
</Project>

View File

@ -9,7 +9,7 @@ var runtime = Argument("runtime","win-x64");
Task("Clean")
.Does(context =>
{
context.CleanDirectory("./build");
context.CleanDirectory("./dist");
});
Task("Build")