Methodology and Documentation for ASP.NET MVC Projects [closed]

0

In the company where I work, I have always had complete freedom to develop the applications requested. I have always worked in a unique way despite having a co-worker because we both developed separate projects.

Starting next week, I will be working with two aides and I am thinking of applying some methodology to develop small teams and also document all the applications, something that does not happen nowadays.

I currently work with Asp.Net MVC 4 and C #. What would be the development / documentation methodology that would best fit my model, and do I intend to document the old projects?

Is it interesting to break the application layers into MVC and assign each to a team developer? I do not see this as a very practical solution, but as I said, I have no experience in team development.

Although it sounds like an opinion question with many answers, it is my intention to receive an indication of a good way forward to apply the best practice possible in this new situation.

    
asked by anonymous 28.10.2014 / 20:27

1 answer

1

I'll answer a portion of your question.

Is it interesting to unmask the application layers in MVC and assign each to a team developer? I do not see this as a very practical solution, but as I said, I have no experience in team development.

No. Unmasking the layers causes a complication for the configuration (packages,% w /%, and so on), and IDE does not work very well with this layer separation. For example, if you use the DotNetOpenAuth Entensions package, the IDE gets lost and marks errors that do not exist if the configuration is not strictly correct.

I currently work with Asp.Net MVC 4 and C #. What would be the development / documentation methodology that would best suit my model, and do I intend to document the old projects?

Depends on the current working template. There are some development methodologies you can use:

  • Scrum
  • Agile
  • Extreme Programming

For documentation, you can use the .NET standard comments feature .     

28.10.2014 / 22:04