如何发布从视觉工作室到Azure工件的包装

发布于 2025-01-21 11:55:01 字数 125 浏览 1 评论 0原文

我正在寻找一种从Visual Studio到Azure Artifact的供稿发布包裹的方法。我能够使用CLI和Azure管道来做到这一点,但是现在我正在寻找一种从Visual Studio 2022中做到这一点的方法

I am looking for a way to publish a package from visual studio to azure artifact's feed. I am able to do that using cli and azure pipeline, but now I am looking for a way to do that from visual studio 2022.

Kind Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慈悲佛祖 2025-01-28 11:55:01

如何将来自Visual Studio的软件包发布到Azure工件

恐怕没有一个偏僻的方式发布从Visual Studio到Azure Artifact Feed的软件包。

我们必须通过CLI和Azure管道来执行此操作。

如果您仍然想通过Visual Studio进行此操作,则可以在项目文件中添加MSBuild客户任务,以调用CLI发布Packge:

<Target Name="PublishMyPackage" AfterTargets="Build">
    <Exec Command="<give your command here>" />
</Target>

How to publish a package from Visual Studio to azure artifacts

I am afraid there is no out of box way publish a package from Visual Studio to azure artifact feed.

We have to do this via cli and azure pipeline.

If you still want to do this by Visual Studio, you could add a MSBuild customer task in the project file to invoke the cli to publish packge:

<Target Name="PublishMyPackage" AfterTargets="Build">
    <Exec Command="<give your command here>" />
</Target>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文