对于 Azure 项目,在管理多个服务配置时,当前配置选择保存在哪里

发布于 2024-12-06 19:44:40 字数 143 浏览 1 评论 0原文

我想知道这一点,因为我想找到一种方法来创建一个构建后事件,无论我是尝试在模拟器中编译和运行还是编译并发布到云,该事件都是不同的。

我的构建后事件

我不知道是否有更简单的方法,但我想如果我能找到当前设置(云或本地)的保存位置,我可以基于该分支

I'm wondering about this because i'd like to find a way to create a post-build event that is different whether I'm trying to compile and run in the emulator or wheter I'm compiling and publishing to the cloud.

I don't know if there is an easier way, but I thought that If I could find where the current setting (cloud or local) is saved I could branch my post-build event based on that

thx

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

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

发布评论

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

评论(1

归途 2024-12-13 19:44:40

它位于变量 TargetProfile 中,因此您应该能够执行与此类似的操作(这是在发布后使​​用的,但您明白了):

<Target Name="AfterPublish">
    <ItemGroup Condition="'$(TargetProfile)' == 'Cloud'">
        <-- Do you thing here -->
    </ItemGroup>
</Target>

It is in a variable TargetProfile so you should be able to do something similar to this (which is for after publish, but you get the idea):

<Target Name="AfterPublish">
    <ItemGroup Condition="'$(TargetProfile)' == 'Cloud'">
        <-- Do you thing here -->
    </ItemGroup>
</Target>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文