DeVigner
DeVigner

Reputation: 33

Publish/Web Deploy for Mac Visual Studio Community

Is there a way to Publish ASP.NET Core WebApp to a local folder and not just the forced default to Azure? I looked around and can't find any information on that.

Upvotes: 3

Views: 2267

Answers (1)

Tom Sun
Tom Sun

Reputation: 24549

Is there a way to Publish ASP.NET Core WebApp to a local folder and not just the forced default to Azure?

I test it on the windows platform via dotnet publish commandline, it works correctly. You could have a try on Mas OS.

dotnet publish webprojectName.csproj --output localpath

enter image description here

Upvotes: 6

Related Questions