Skip to content

Commit

Permalink
don't set IsDocsBuild flag on project
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed Jan 10, 2025
1 parent d7279f5 commit d779408
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build/DalamudBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,12 @@ public class DalamudBuild : NukeBuild

// We need to emit compiler generated files for the docs build, since docfx can't run generators directly
// TODO: This fails every build after this because of redefinitions...
if (IsDocsBuild)
{
Log.Warning("Building for documentation, emitting compiler generated files. This can cause issues on Windows due to path-length limitations");
s = s
.SetProperty("IsDocsBuild", "true");
}
// if (IsDocsBuild)
// {
// Log.Warning("Building for documentation, emitting compiler generated files. This can cause issues on Windows due to path-length limitations");
// s = s
// .SetProperty("IsDocsBuild", "true");
// }

return s;
});
Expand Down

0 comments on commit d779408

Please sign in to comment.