Skip to content

Commit a9c8e14

Browse files
committed
(build) do not run dotnet format as part of the build
1 parent 327d2b6 commit a9c8e14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/build/Tasks/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Build.Tasks;
55
[TaskName(nameof(Build))]
66
[TaskDescription("Builds the solution")]
77
[IsDependentOn(typeof(Clean))]
8-
[IsDependentOn(typeof(CodeFormat))]
8+
// [IsDependentOn(typeof(CodeFormat))]
99
public sealed class Build : FrostingTask<BuildContext>
1010
{
1111
public override void Run(BuildContext context)

0 commit comments

Comments
 (0)