Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道这一点,因为我想找到一种方法来创建一个不同的构建后事件,无论我是尝试在模拟器中编译和运行,还是我正在编译和发布到云。
我不知道是否有更简单的方法,但我认为如果我能找到当前设置(云或本地)的保存位置,我可以基于此分支我的构建后事件
谢谢
它在一个变量中TargetProfile,所以你应该能够做类似的事情(这是在发布之后,但你明白了):
TargetProfile
<Target Name="AfterPublish"> <ItemGroup Condition="'$(TargetProfile)' == 'Cloud'"> <-- Do you thing here --> </ItemGroup> </Target>