Visual Studio:从远程位置加载项目

发布于 2024-07-24 06:53:59 字数 379 浏览 16 评论 0原文

使用 Visual Studio (2008),是否可以加载远程位置上存在的项目(到解决方案)?

基本上我想做的是以某种方式“托管" 在线创建一个 VS 项目,然后从远程位置将该项目加载到解决方案。 这在某种程度上可能吗?

这样我就可以在加载我的Utils Library(在大量项目中使用)时保持完整性,并且我不希望我的项目在不同的项目中存在副本并且都具有不同的版本等...

我知道一个可能的解决方案是将 Utils Library 项目托管在 SVN 中,然后文件夹将直接同步到它,但是还有其他方法可以做到这一点吗(即,更直接的东西)?

With Visual Studio (2008), is it possible to load a project (to a solution) that exists on a remote location ?

Basically what I want to do is somehow "host" a VS Project online and then load this project to a solution from a remote location. Is this possible in some way?

This is so that I can keep integrity when loading my Utils Library (used in tons of projects) and I don't want copies of my project in different projects and all having different versions etc...

I know that a possible solution is to have the Utils Library project hosted in SVN and then the folder would sync to it directly, but is there any other way to do this (ie, something more direct) ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

旧梦荧光笔 2024-07-31 06:54:00

在每个解决方案中引用编译好的dll不是更简单吗? 您提议的方式将使您对某个解决方案的项目进行更改,从而导致一堆其他解决方案出现问题,而您可能不会立即看到这些问题。

最好在每个子解决方案中引用一个 Utils dll 版本,然后您可以在必要时更新该 dll,并同时进行测试。

Is it not simpler just to have the compiled dll referenced in each solution? The way you are proposing is going to open you to changes to the project for one solution causing problems in a bunch of other solutions, that you might not immediately see.

Better to have a version of the Utils dll referenced in each sub solution and you can then update that dll when necessary, and test at the same time.

百变从容 2024-07-31 06:53:59

是的,如果您可以将网络驱动器映射到它,则可以从 Visual Studio 中的位置打开文件。

您可以通过在路径中输入“ftp://your-ftp-server”将网络驱动器映射到 ftp 服务器盒子。

正如其他人所说,但实际上并不推荐。 VS 的读/写功能不仅仅是编辑主项目文件,它还执行各种其他操作,因此您的网络流量会高于您真正想要的。

或者您可以查看 dropbox。 它附带了一个资源管理器插件,可以使您的本地 PC 与服务器保持同步。

我的建议是使用像 subversion 这样的源代码控制。

Yes, if you can map a network drive to it, the you can open the files from the location in visual studio.

you can map network drives to ftp servers by entering "ftp://your-ftp-server" in the path box.

Like others have said though, it's not really recommended. VS reads/writes a lot more than just to edit the main project files, it does all kinds of other stuff, so your network traffic be higher than you really want.

Or you could look at dropbox. It comes with a explorer addin that keeps your local PC in sync with the server.

My recommendation would be to use source control like subversion though.

鸵鸟症 2024-07-31 06:53:59

这是可能的,但不推荐(您最好使用某种形式的源代码控制,无论是 SVN,还是共享源代码提供程序,例如 Codeplex(适用于开源项目)或 TFS Preview(适用于闭源项目)

It is possible, but not recommended (you'd be better using some form of source control, be it SVN, or a shared source provider like Codeplex (for open source projects) or TFS Preview (for closed source projects)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文