How do I save the publish location in SVN for VisualStudio 2008?
Where is the publish location stored in 开发者_开发百科a VisualStudio project? How can I make sure when a different developer checks out my project that they can publish the project to the same location. This is for internal projects.
Update: This is for web projects.
in de project file as a property:
<PublishUrl>publish\</PublishUrl>
<InstallUrl>\\fileserver\Public\MyApp\</InstallUrl>
Assuming your project file is also in svn it should already work...
精彩评论