├── .gitattributes ├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── CheckForDotNet45 ├── CheckForDotNet45.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── README.md ├── SmallestDotNet.sln ├── SmallestDotNet ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Properties │ └── AssemblyInfo.cs ├── SmallestDotNet.csproj ├── VersionCheck.ashx ├── VersionCheck.ashx.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.min.css │ ├── font-awesome-ie7.css │ ├── font-awesome.css │ ├── m-buttons.min.css │ └── main.css ├── font │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── img │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ └── hero_home.jpg ├── javascript.ashx ├── javascriptdom.ashx ├── js │ ├── bootstrap.min.js │ └── jquery-1.8.1.min.js └── testjs.html ├── SmallestDotNetLib ├── BrowserSupport.cs ├── CLRVersion.cs ├── CLRVersions.cs ├── Constants.cs ├── Helpers.cs ├── JsonVersions.cs ├── OperatingSystemSupport.cs ├── Properties │ └── AssemblyInfo.cs ├── SmallestDotNetLib.csproj └── UpdateInformationResponse.cs ├── SmallestTest ├── CLRVersionDictionaryTests.cs ├── JavascriptDomTests.cs ├── OperatingSystemVersionTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SmallestTest.csproj ├── VersionCheckTest.cs └── VersionWriterTests.cs └── license.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /CheckForDotNet45/CheckForDotNet45.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/CheckForDotNet45/CheckForDotNet45.csproj -------------------------------------------------------------------------------- /CheckForDotNet45/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/CheckForDotNet45/Program.cs -------------------------------------------------------------------------------- /CheckForDotNet45/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/CheckForDotNet45/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CheckForDotNet45/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/CheckForDotNet45/app.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/README.md -------------------------------------------------------------------------------- /SmallestDotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet.sln -------------------------------------------------------------------------------- /SmallestDotNet/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/Default.aspx -------------------------------------------------------------------------------- /SmallestDotNet/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/Default.aspx.cs -------------------------------------------------------------------------------- /SmallestDotNet/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/Default.aspx.designer.cs -------------------------------------------------------------------------------- /SmallestDotNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmallestDotNet/SmallestDotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/SmallestDotNet.csproj -------------------------------------------------------------------------------- /SmallestDotNet/VersionCheck.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/VersionCheck.ashx -------------------------------------------------------------------------------- /SmallestDotNet/VersionCheck.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/VersionCheck.ashx.cs -------------------------------------------------------------------------------- /SmallestDotNet/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/Web.Debug.config -------------------------------------------------------------------------------- /SmallestDotNet/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/Web.Release.config -------------------------------------------------------------------------------- /SmallestDotNet/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/Web.config -------------------------------------------------------------------------------- /SmallestDotNet/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /SmallestDotNet/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/css/bootstrap.min.css -------------------------------------------------------------------------------- /SmallestDotNet/css/font-awesome-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/css/font-awesome-ie7.css -------------------------------------------------------------------------------- /SmallestDotNet/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/css/font-awesome.css -------------------------------------------------------------------------------- /SmallestDotNet/css/m-buttons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/css/m-buttons.min.css -------------------------------------------------------------------------------- /SmallestDotNet/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/css/main.css -------------------------------------------------------------------------------- /SmallestDotNet/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /SmallestDotNet/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /SmallestDotNet/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /SmallestDotNet/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /SmallestDotNet/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /SmallestDotNet/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /SmallestDotNet/img/hero_home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/img/hero_home.jpg -------------------------------------------------------------------------------- /SmallestDotNet/javascript.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/javascript.ashx -------------------------------------------------------------------------------- /SmallestDotNet/javascriptdom.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/javascriptdom.ashx -------------------------------------------------------------------------------- /SmallestDotNet/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/js/bootstrap.min.js -------------------------------------------------------------------------------- /SmallestDotNet/js/jquery-1.8.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/js/jquery-1.8.1.min.js -------------------------------------------------------------------------------- /SmallestDotNet/testjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNet/testjs.html -------------------------------------------------------------------------------- /SmallestDotNetLib/BrowserSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNetLib/BrowserSupport.cs -------------------------------------------------------------------------------- /SmallestDotNetLib/CLRVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNetLib/CLRVersion.cs -------------------------------------------------------------------------------- /SmallestDotNetLib/CLRVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNetLib/CLRVersions.cs -------------------------------------------------------------------------------- /SmallestDotNetLib/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNetLib/Constants.cs -------------------------------------------------------------------------------- /SmallestDotNetLib/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNetLib/Helpers.cs -------------------------------------------------------------------------------- /SmallestDotNetLib/JsonVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNetLib/JsonVersions.cs -------------------------------------------------------------------------------- /SmallestDotNetLib/OperatingSystemSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNetLib/OperatingSystemSupport.cs -------------------------------------------------------------------------------- /SmallestDotNetLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNetLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmallestDotNetLib/SmallestDotNetLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNetLib/SmallestDotNetLib.csproj -------------------------------------------------------------------------------- /SmallestDotNetLib/UpdateInformationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestDotNetLib/UpdateInformationResponse.cs -------------------------------------------------------------------------------- /SmallestTest/CLRVersionDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestTest/CLRVersionDictionaryTests.cs -------------------------------------------------------------------------------- /SmallestTest/JavascriptDomTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestTest/JavascriptDomTests.cs -------------------------------------------------------------------------------- /SmallestTest/OperatingSystemVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestTest/OperatingSystemVersionTests.cs -------------------------------------------------------------------------------- /SmallestTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmallestTest/SmallestTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestTest/SmallestTest.csproj -------------------------------------------------------------------------------- /SmallestTest/VersionCheckTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestTest/VersionCheckTest.cs -------------------------------------------------------------------------------- /SmallestTest/VersionWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/SmallestTest/VersionWriterTests.cs -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanselman/SmallestDotNet/HEAD/license.txt --------------------------------------------------------------------------------