dotnet publish with /p:PublishProfile=?

前端 未结 6 2062
离开以前
离开以前 2020-12-29 03:53

I\'m trying to call \"dotnet publish\" with a specific publish profile pubxml file as documented here :

https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/

6条回答
  •  爱一瞬间的悲伤
    2020-12-29 04:17

    You might need the full path, e.g.

    dotnet publish -c Release /p:PublishProfile=Properties\PublishProfiles\FolderProfile.pubxml
    

提交回复
热议问题