如何在调试配置中添加Reference
(在References文件夹中),而不将其添加到发布配置?
有没有办法在Xamarin Studio中使用GUI执行此操作? 属性上下文菜单中似乎没有任何可用选项。
答案 0 :(得分:0)
从Xamarin Studio 6开始,IDE无法做到这一点
您需要使用文本编辑器(例如终端)在该解决方案.csproj
中手动编辑Xamarin项目。
将Condition="'$(Configuration)' == 'Debug'
添加到Reference
或ProjectReference
。
示例:
<Reference Include="xxx.dll" />
<Reference Include="xxx..dll" Condition="'$(Configuration)' == 'Debug'"/>