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
I just do dotnet ef --help and it builds my app. On top of that because the application is built it runs build scripts (bundler and minifier). EF command should only invoke build when it is needed.
PS C:\users\XXXXX\documents\visual studio 2015\Projects\WebApplication12\src\WebApplication12> dotnet ef --help
Project WebApplication12 (.NETCoreApp,Version=v1.0) will be compiled because project is not safe for incremental compilation. Use --build-profile flag for more information.
Compiling WebApplication12 for .NETCoreApp,Version=v1.0
Bundling with configuration from C:\users\XXXXX\documents\visual studio 2015\Projects\WebApplication12\src\WebApplication12\bundleconfig.json
Processing wwwroot/css/site.min.css
Bundled
Minified
Processing wwwroot/js/site.min.js
Compilation succeeded.
0 Warning(s)
0 Error(s)
Time elapsed 00:00:03.4386959
(The compilation time can be improved. Run "dotnet build --build-profile" for more information)
Entity Framework .NET Core CLI Commands 1.0.0-preview2-21424
Usage: dotnet ef [options] [command]
Options:
-h|--help Show help information
-v|--verbose Enable verbose output
--version Show version information
--assembly <ASSEMBLY> The assembly file to load.
--startup-assembly <ASSEMBLY> The assembly file containing the startup class.
--data-dir <DIR> The folder used as the data directory (defaults to current working directory).
--project-dir <DIR> The folder used as the project directory (defaults to current working directory).
--content-root-path <DIR> The folder used as the content root path for the application (defaults to application base directory).
--root-namespace <NAMESPACE> The root namespace of the target project (defaults to the project assembly name).
Commands:
database Commands to manage your database
dbcontext Commands to manage your DbContext types
migrations Commands to manage your migrations
Use "dotnet ef [command] --help" for more information about a command.
The text was updated successfully, but these errors were encountered:
I just do
dotnet ef --help
and it builds my app. On top of that because the application is built it runs build scripts (bundler and minifier). EF command should only invoke build when it is needed.The text was updated successfully, but these errors were encountered: