English 中文(简体)
从事同一网络应用项目的多个开发商
原标题:Multiple developers working on same Web Application Project
  • 时间:2011-10-18 20:39:35
  •  标签:
  • asp.net

我有一个由三名开发商组成的小组在同一网站应用项目网站上开展工作。 我们大家都使用VS 2010和来源装置Vault。

我们每个人都在我们的当地运动方面有不同的工作团队,我正面临一些需要理解的问题:

(1) 当有人想在项目上增加一个新页时,我们似乎必须检查整个项目,或至少检查......csproj案卷,增加页数,然后将.csproj案卷退回。 这是否正确?

2) 当我们检查已修改的法典时,我们绝不能检查双倍或其中的任何东西。 如果我们这样做,没有人能够汇编自己的法典。 这是否正确?

下面,我寻求一些最佳做法建议。 鉴于我们正在使用的工具,管理这一发展努力的最佳途径是什么?

最佳回答

(1) 在增加新网页时,唯一应当加以检查的是.csproj档案。 在支票上,你将投入文件(编辑)和新页文件(编)

2)Your bin不应受到源头控制。 如果你需要一个部署的建筑,你可以或在当地使用VS的 Publish方言,而不是使用最新的代码,或能够从一个建筑机器(通过MSBUILD)中使建筑自动化,该机器将从源头控制来汇编你的项目。

问题回答

(1) 如果在项目目录上增加文件,并更新项目档案,则没有必要这样做。 在我公司,我们有一项政策,即不以任何形式核对文件(无论是网络文件还是项目文件)。 我们把这些标志为读/礼,不对他们表示担忧。 就网络而言,我们维持一个主版,它不是拉开的,而是储存所有可能的价值。

2) 由于本手册载有编纂的法典,如果有人在编纂的法典中从事部分工作,他们就不想拿走。 同样,在我公司,我们通常将汇编自己的版本,而不在双版档案中查到。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签