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
Describe the bug
The build scripts build.cmd and build-packages.cmd build with the Debug configuration, not Release.
Optimization. The release configuration enables the compiler to perform optimizations that are not done in debug mode. These optimizations include advanced code restructuring and removal of unnecessary instructions, which can lead to faster execution times. For example, in release the JIT can perform inlining, where it replaces a method call with the method's body to save the overhead of the call.
No code contracts. Release mode often exclude code contracts and assertions that are used for checking conditions during development. These checks can slow down the execution because they add extra instructions at runtime.
Non-Optimized Libraries. When building in debug, the referenced libraries might also be the non-optimized versions, which can further degrade performance.
Non-optimized data structures. Data structures and algorithms might not be optimized for space and time efficiency in debug mode, as the focus is on readability and debugability for humans.
To Reproduce
Inspect the files build.cmd and build-packages.cmd. The arguments to dotnet build and dotnet pack are hard coded to Debug.
Expected behavior
If building for debug configurations is necessary, then there should be a command line argument to set the version to be built or both should be built by default.
Screenshots
See build results for #201. Example: Build
Describe the bug
The build scripts
build.cmd
andbuild-packages.cmd
build with the Debug configuration, not Release.To Reproduce
Inspect the files
build.cmd
andbuild-packages.cmd
. The arguments todotnet build
anddotnet pack
are hard coded toDebug
.Expected behavior
If building for debug configurations is necessary, then there should be a command line argument to set the version to be built or both should be built by default.
Screenshots
See build results for #201. Example: Build
The text was updated successfully, but these errors were encountered: