Hi all:
Anyone using VS Code as their IDE? I have a dumb question... if using VS Code then how do you do Package Manager Console things like "Update-Database?"
Or is anyone using Visual Studio for Mac? There is a Package Console "pad" in Visual Studio for Mac but you cannot type into it... so how to do "Update-Database" there?
Any advice on getting set up for ASP.NET Zero dev on a Mac?
I am slowly trying to get the Angular/Core projects working on a mac... forgive my cluelessness...
3 Answer(s)
-
0
if using VS Code then how do you do Package Manager Console things like "Update-Database?"
Use the EF Core .NET Command-line Tools:
dotnet ef database update
You may need to run dotnet restore the first time.
Or is anyone using Visual Studio for Mac? There is a Package Console "pad" in Visual Studio for Mac but you cannot type into it... so how to do "Update-Database" there?
The Package Console is for displaying output related to NuGet packages.
Any advice on getting set up for ASP.NET Zero dev on a Mac?
You'll probably need Other Database Integrations.
Not sure if you're already referring to Getting Started Angular and Development-Guide-Angular (both not Mac-specific).
-
0
@aaron Thanks!!
-
0
Followup, how I got it working here: [ #5117@f4847ddc-1fdd-497f-95b6-8e2350069a43])