dotnet 发布/p:PublishProfile=?

编程入门 行业动态 更新时间:2024-10-26 02:30:32
本文介绍了dotnet 发布/p:PublishProfile=?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我正在尝试使用此处记录的特定发布配置文件 pubxml 文件调用dotnet 发布":

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

https://docs.microsoft/en-us/aspnet/core/host-and-deploy/visual-studio-publish-profiles?view=aspnetcore-2.1&tabs=aspnetcore2x

However, everything I try seems to result in the default behaviour, and the /p:PublishProfile part is ignored.

dotnet publish /p:PublishProfile="MyFolderProfile"

Doesn't work, and logs no error, building to the default location under "/obj".

I do note that an intentionally incorrect command has the same result though, eg:

dotnet publish /p:PublishProfile="MyFolderProfile-XXXXX"

What am I doing wrong? - Any pointers would be greatly appreciated!

解决方案

My response is late. My solution has a simple .NET Core console application ConsoleAppCore.csproj. I used Visual Studio IDE to generate a publish profile with the name FolderProfile.pubxml and then the following commands worked for me:

Relative path - From the solution root

dotnet publish ConsoleAppCoreConsoleAppCore.csproj /p:PublishProfile=ConsoleAppCorePropertiesPublishProfilesFolderProfile.pubxml

Absolute path - From any location

dotnet publish "C:workConsoleAppCoreConsoleAppCore.csproj"   "/p:PublishProfile=C:workConsoleAppCorePropertiesPublishProfilesFolderProfile.pubxml"

On Azure dev ops

Task name=.NET Core

Task version=2

Command=publish

Path to projects=I left this empty

Arguments=

$(System.DefaultWorkingDirectory)ConsoleAppCoreConsoleAppCore.csproj /p:PublishProfile=$(System.DefaultWorkingDirectory)ConsoleAppCorePropertiesPublishProfilesFolderProfile.pubxml  --configuration $(BuildConfiguration) --output  $(Build.ArtifactStagingDirectory)ConsoleAppCore-Publish

In the Azure Dev Ops build pipeline scenario, I have redirected the output to a folder under $(Build.ArtifactStagingDirectory) . I also have a Publish Artifact task which is configured to use the staging directory variable.

I have made use of the publish profile XML file because I wanted a single file to govern the complete behavior while on Azure Devops. Relying on a single file for all parameters simplifies management on Azure.

Azure Dev ops - Artifacts Explorer

The Publish Artifact task created a drop for me and this is how it looks. Please notice that the file name in the explorer tallies with the name specified along with the --output option in the dotnet publish task

这篇关于dotnet 发布/p:PublishProfile=?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

更多推荐

[db:关键词]

本文发布于:2023-04-14 16:24:43,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/845322.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:dotnet   PublishProfile

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!