问题
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