I am using Visual Studio 2008 and I want to try Miniprofiler, but I don't have Nuget. Is it possible to install it without nuget, if so how?  I am using Visual Studio 2008, with EF 4 and ASP.NET MVC 3
            Asked
            
        
        
            Active
            
        
            Viewed 111 times
        
    0
            
            
        - 
                    http://www.hanselman.com/blog/NuGetSupportForVisualStudio2008.aspx – SLaks Mar 11 '15 at 14:53
 
1 Answers
2
            
            
        Two options:
- Direct download the package
- Download the nuget package by using the direct download syntax: 
https://www.nuget.org/api/v2/package/{packageID}/{packageVersion}. In this case this translates to https://www.nuget.org/api/v2/package/MiniProfiler/3.1.1.140 - The nuget package can be opened through an unzip utility (or change the extension to .zip and use Windows Explorer).
 - Extract the files, find the dll that you want to use, and use it.
 
 - Download the nuget package by using the direct download syntax: 
 - Build it yourself
git clone https://github.com/MiniProfiler/dotnet.gitor clone the repo using the GitHub UI of your choice.- Open in Visual Studio, build and use
 
 
        Community
        
- 1
 - 1
 
        Yaakov Ellis
        
- 40,752
 - 27
 - 129
 - 174