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
Right now, running dotnet example in CI will always use the default build configuration (i.e. Debug). This is not great if you have CI jobs for both Debug and Release, since running examples in the Release job will cause the entire project to be rebuilt for Debug (after just building it for Release), and then run it in an unexpected configuration.
A -c option for specifying configuration could probably be the solution.
The text was updated successfully, but these errors were encountered:
Right now, running
dotnet example
in CI will always use the default build configuration (i.e. Debug). This is not great if you have CI jobs for both Debug and Release, since running examples in the Release job will cause the entire project to be rebuilt for Debug (after just building it for Release), and then run it in an unexpected configuration.A
-c
option for specifying configuration could probably be the solution.The text was updated successfully, but these errors were encountered: