1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-01 05:10:50 +01:00

made all tasks explicitly depend on prepare

This commit is contained in:
Ell 2024-10-27 00:05:16 +02:00
parent 0ccac21825
commit 0cc1040700

View file

@ -76,14 +76,14 @@ Task("Push").WithCriteria(gitRef == "refs/heads/main" || gitRef.StartsWith("refs
DotNetNuGetPush("**/MLEM*.nupkg", settings);
});
Task("Document").Does(() => {
Task("Document").IsDependentOn("Prepare").Does(() => {
DocFxMetadata("Docs/docfx.json");
DocFxBuild("Docs/docfx.json");
if (serve)
DocFxServe("Docs/_site");
});
Task("PublishWeb").Does(() => {
Task("PublishWeb").IsDependentOn("Prepare").Does(() => {
DotNetPublish("Demos.Web/Demos.Web.KNI.csproj", new DotNetPublishSettings {
Configuration = config,
ArgumentCustomization = args => args.Append($"/p:Version={version}")