You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
My GitHub Actions workflow integrate dotnet format to verify coding styles. I built my solution using dotnet build -c Release --no-restore. The problem is that I cannot make dotnet format to utilize output of dotnet build because it internally builds my solution using Debug configuration. Consequently, it took double times for the build task.
Describe the solution you'd like
I would like that dotnet format can support --no-build -c Release as dotnet publish, in order that my workflow will be faster.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
My GitHub Actions workflow integrate
dotnet format
to verify coding styles. I built my solution usingdotnet build -c Release --no-restore
. The problem is that I cannot makedotnet format
to utilize output ofdotnet build
because it internally builds my solution usingDebug
configuration. Consequently, it took double times for the build task.Describe the solution you'd like
I would like that
dotnet format
can support--no-build -c Release
asdotnet publish
, in order that my workflow will be faster.The text was updated successfully, but these errors were encountered: