VS2010 MV3 - 如何在解决方案之间共享文件?

发布于 2024-11-08 06:33:09 字数 310 浏览 0 评论 0原文

我是应用程序的唯一开发人员。该应用程序的所有文件都存储在同一台计算机上,我使用的是 Visual Studio 2010 Ultimate。

该应用程序具有三个解决方案,这些解决方案共享一些共同的项目,例如一些样式表、一些 JavaScript 和共享视图。

当我更改一个文件时,它开始变得困难,因为我必须将其复制到其他解决方案中的其他项目。

有没有一种简单的方法可以共享文件。一些可以帮助我提高工作效率的东西。甚至可能是一些单用户源代码或解决方案之间链接文件的方法。

希望我能找到一个人来帮助我让我的生活更轻松。

罗伯特·W

I am the only developer for an application. All the files for this application are stored on the same computer and I am using Visual Studio 2010 Ultimate.

The application has three solutions and these share common items such as some stylesheets, some javascript and shared views.

It's starting to become difficult when I change one file as I have to copy this to the other projects in the other solutions.

Is there a simple way that I could share files. Something that would help me be more productive. Possibly even some single user source code or a way of linking files between solutions.

Hope I can find someone to help me make my life easier.

Robert W

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

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

发布评论

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

评论(2

多像笑话 2024-11-15 06:33:09

即使您自己工作,我也会建议某种源代码控制系统。 Team Server 现在随 Visual Studio 免费提供,或者您也可以使用开源工具。像这样,您可以链接到其他项目中的源文件,并且可以重用您的文件。

Even if you work on your own I would suggest some kind of Source Control System. Team Server is now free with Visual Studio or you can use open source tools. Like this you can link to source files in other projects and you can reuse your files.

远山浅 2024-11-15 06:33:09
  1. 使用源代码管理! SVN 是免费的,TFS 和 Ultimate 也是免费的。
  2. 如果其基于 Web 的文件(javscript、图片、css 等)使用虚拟目录来指向公共代码目录。
  3. 如果它是编译代码(C#、VB 等),您可以链接这些文件。在对话框中添加现有文件时,它将有一个带有向下箭头的打开按钮。单击向下箭头,“添加为链接”将可用。然后它将使用对另一个文件的相对引用。我将此技术用于 SolutionAssemblyInfo.cs 文件。
    我建议将常用文件放置在与解决方案文件相同的目录中,或者文件夹深度不超过 1 个。
  1. Use Source Control! SVN is free so is TFS with Ultimate.
  2. If its web based files (javscript, pictures, css, etc) use a virtual directory to point to the common code directories.
  3. if its compiled code (C#,VB, etc) you can link the files. When adding an existing file in the dialog it will have a open button, with an arrow down. click the arrow down and "add as link" will be available. It will then use relative referencing to the other file. I use this technique for a SolutionAssemblyInfo.cs file.
    I would recommend placing the common files in the same directory as the solution file or no more than 1 folder deep.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文