Need to know where StartAction configuration in Visual Studio is stored

◇◆丶佛笑我妖孽 提交于 2021-02-11 05:41:29

问题


In Silverlight project, I could right click and choose Properties. In the Debug tab, I can choose Out-of-browser application to debug the application in OOB mode.

Can anybody inform where is this configuration stored? I've tried to search the .csproj file, OutOfBrowserSettings.xml, and AppManifest.xml, but I don't see this configuration.

Any help will be appreciated. Thanks.


回答1:


The changes are made to the .csproj.user file.

 <StartAction>OfflineApplication</StartAction>
 .
 .
 .
 <OutOfBrowserProjectToDebug>YourAppProject</OutOfBrowserProjectToDebug>


来源:https://stackoverflow.com/questions/5578581/need-to-know-where-startaction-configuration-in-visual-studio-is-stored

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!