tags:

views:

88

answers:

2

Is there a place where I can get the source code for Subsonic 2.2? The closest I can find is subsonic 2.1.1. I have the Subsonic 2.2 .dll, but need the source code, for policy purposes....Thanks.

+3  A: 

SubSonic 2's hosted on github. You can find it here

Adam
Also, just to note. The Github folder name is 2.0, but it actually contains 2.2.1.0. You can check the SubSonic/Properties/AssemblyInfo.cs for release number.
Jim W
Thanks. But If I download the .zip file from github, the assembly files all say 2.1.1.0. Do I need download each file separately?
A: 

You could use .NET Reflector to generate source code from a .NET assembly, although grabbing the latest source from github is probably the better solution.

Scott Anderson