I'm looking for ASP.NET MVC 5.0 RTM source code. I've tried to download this from http://aspnetwebstack.codeplex.com/ but it seems to have only the most recent version 5.1.1 RTM. I've tried with no success to download for a specific tag or branch. In Source Code tab, in field "Browsing Changes in" the only options are "master" or "v3-rtm".
Could someone help me with this?
As per their wiki:
MVC 5.2.3 RTM = v3.2.3 (commit 0e974218e12a) https://aspnetwebstack.codeplex.com/SourceControl/changeset/view/0e974218e12a
MVC 5.2.2 RTM = v3.2.2 (commit 66298100f4e3) https://aspnetwebstack.codeplex.com/SourceControl/changeset/view/66298100f4e3
MVC 5.1.3 RTM = v3.1.3 (commit 0150245a9e34) https://aspnetwebstack.codeplex.com/SourceControl/changeset/view/0150245a9e34
MVC 5.1.1 RTM = v3.1.1 (commit 54866f0d3262) https://aspnetwebstack.codeplex.com/SourceControl/changeset/view/54866f0d3262
MVC 5.0 RTM = v3.0 (commit 39391d3a64d7) https://aspnetwebstack.codeplex.com/SourceControl/changeset/view/39391d3a64d7
MVC 4.0 RTM = v2.0 (commit 89b9166ca722) https://aspnetwebstack.codeplex.com/SourceControl/changeset/view/89b9166ca722
This might be helpful when looking for sources of concrete MVC/WebAPI/Web Pages version: https://aspnetwebstack.codeplex.com/wikipage?title=Building%20from%20Source
In general way, if you have already cloned the repository. You can use the
Git
commands:Your will see something like:
or
And all tags with their comments will be promped:
Select the version to download by the tag, and executed the
git rev-parse
command to get the id of the commit: For example:With the first 12 characters of the SHA of the commit you can now build the url. For example:
Version 3.2.2 = https://aspnetwebstack.codeplex.com/SourceControl/changeset/view/66298100f4e3 Version 3.2.3 = https://aspnetwebstack.codeplex.com/SourceControl/changeset/view/0e974218e12a ...
or just call
git checkout
command:Looks like the CodePlex repo, with all history, was migrated to GitHub!
https://github.com/aspnet/AspNetWebStack
They even have a milestone for ASP.Net MVC 5.2.4, although it seems somewhat dead:
https://github.com/aspnet/AspNetWebStack/milestone/1
The Releases tab contains the appropriate versions as per @outlookrperson's answer (basically, add 2 to the major version in the tag, e.g. tag 3.2.3 = MVC 5.2.3).