Skip to content

Instantly share code, notes, and snippets.

@jeff-r-koyaltech
Created August 1, 2015 02:05
Show Gist options
  • Save jeff-r-koyaltech/8df783df5a0c8368d8ed to your computer and use it in GitHub Desktop.
Save jeff-r-koyaltech/8df783df5a0c8368d8ed to your computer and use it in GitHub Desktop.
Troubleshooting NuGet in Visual Studio 2015 RTM
PM> Install-Package Google.ProtocolBuffers
Install-Package : Unable to find package 'Google.ProtocolBuffers'
At line:1 char:1
+ Install-Package Google.ProtocolBuffers
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Install-Package], Exception
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand
PM> Get-Package -ListAvailable
Id Versions Description
-- -------- -----------
Curve25519WinRT.WindowsPhone {1.0.0} This is a Windows Runtime Component Implementation of Curve25519, exposing it for Window...
##########################################################################################
### Unchecked my local repository in settings. Afterwards, all packages were available ###
##########################################################################################
PM> Get-Package -ListAvailable
Id Versions Description
-- -------- -----------
EntityFramework {6.1.3} Entity Framework is Microsoft's recommended data access technology for new applications.
Newtonsoft.Json {7.0.1} Json.NET is a popular high-performance JSON framework for .NET
bootstrap {3.3.5} Bootstrap framework in CSS. Includes fonts and JavaScript
jQuery {2.1.4} jQuery is a new kind of JavaScript Library....
Microsoft.AspNet.Mvc {6.0.0-beta6} This package contains the runtime assemblies for ASP.NET MVC.
WebGrease {1.6.0} Web Grease is a suite of tools for optimizing javascript, css files and images.
Microsoft.Net.Http {2.2.29} This package provides a programming interface for modern HTTP/REST based applications.
Microsoft.AspNet.WebApi {5.2.3} This package contains everything you need to host ASP.NET Web API on IIS.
Microsoft.AspNet.Identity.Entity... {3.0.0-beta6} ASP.NET Identity providers that use Entity Framework.
Microsoft.Owin.Host.SystemWeb {3.0.1} OWIN server that enables OWIN-based applications to run on IIS using the ASP.NET request...
jQuery.UI.Combined {1.11.4} The full jQuery UI library as a single combined file. Includes the base theme.
Microsoft.AspNet.Identity.Owin {2.2.1} Owin implementation for ASP.NET Identity.
NUnit {3.0.0-beta-3} NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.
angularjs {1.4.3} AngularJS. HTML enhanced for web apps!
Microsoft.AspNet.WebPages {3.2.3} This package contains core runtime assemblies shared between ASP.NET MVC and ASP.NET Web...
Moq {4.2.1507.118} Moq is the most popular and friendly mocking framework for .NET
Microsoft.AspNet.WebApi.Client {5.2.3} This package adds support for formatting and content negotiation to System.Net.Http.
Microsoft.Owin {3.0.1} Provides a set of helper types and abstractions for simplifying the creation of OWIN com...
AutoMapper {4.0.0-alpha1} A convention-based object-object mapper
Antlr {3.5.0.2} ANother Tool for Language Recognition, is a language tool that provides a framework for ...
Microsoft.AspNet.Razor {4.0.0-beta6} This package contains the runtime assemblies for ASP.NET Web Pages.
Microsoft.Owin.Security.OAuth {3.0.1} Middleware that enables an application to support any standard OAuth 2.0 authentication ...
Microsoft.Owin.Security {3.0.1} Common types which are shared by the various authentication middleware components.
Microsoft.Bcl {1.1.10} Adds support for types added in later versions of .NET when targeting previous versions.
Microsoft.Owin.Security.Cookies {3.0.1} Middleware that enables an application to use cookie based authentication, similar to AS...
Microsoft.AspNet.Identity.Core {2.2.1} Core interfaces for ASP.NET Identity.
Microsoft.jQuery.Unobtrusive.Val... {3.2.3} jQuery plugin that unobtrusively sets up jQuery.Validation.
log4net {2.0.3} The Apache log4net library is a tool to help the programmer output log statements to a v...
Microsoft.ApplicationInsights.Web {1.1.0} Application Insights for .NET web applications. See http://go.microsoft.com/fwlink/?Link...
Microsoft.AspNet.Web.Optimization {1.1.3} ASP.NET Optimization introduces a way to bundle and optimize CSS and JavaScript files.
jQuery.Validation {1.14.0} This jQuery plugin makes simple clientside form validation trivial, while offering lots ...
Microsoft.AspNet.WebApi.WebHost {5.2.3} This package contains everything you need to host ASP.NET Web API on IIS.
Microsoft.AspNet.WebApi.Core {5.2.3} This package contains the core runtime assemblies for ASP.NET Web API.
Modernizr {2.8.3} Modernizr is a small and simple JavaScript library that helps you take advantage of emer...
Microsoft.AspNet.SignalR {2.2.0} Incredibly simple real-time web for .NET....
Microsoft.jQuery.Unobtrusive.Ajax {3.2.3} jQuery plugin that unobtrusively sets up jQuery Ajax.
knockoutjs {3.3.0} A JavaScript MVVM library to help you create rich, dynamic user interfaces with clean ma...
HtmlAgilityPack {1.4.9} This is an agile HTML parser that builds a read/write DOM and supports plain XPATH or XS...
AngularJS.Core {1.4.3} AngularJS. HTML enhanced for web apps!...
Microsoft.Bcl.Build {1.0.21} Provides build infrastructure components for Microsoft packages.
Microsoft.Data.OData {5.6.5-beta} Classes to serialize, deserialize and validate OData JSON payloads.
Microsoft.Owin.Security.Google {3.0.1} Contains middlewares to support Google's OpenId and OAuth 2.0 authentication workflows.
Unity {3.5.1405-prerelease} The Unity Application Block (Unity) is a lightweight extensible dependency injection con...
NLog {4.0.1} NLog - Advanced .NET and Silverlight Logging
AjaxControlToolkit {15.1.2} Build AJAX applications in Web Forms using more than 40 controls in AjaxControlToolkit.
System.Data.SQLite {1.0.97} The official SQLite database engine for both x86 and x64 along with the ADO.NET provider...
Microsoft.Owin.Security.Facebook {3.0.1} Middleware that enables an application to support Facebook's OAuth 2.0 authentication wo...
Microsoft.AspNet.WebApi.Owin {5.2.3} This package allows you to host ASP.NET Web API within an OWIN server and provides acces...
Microsoft.AspNet.WebApi.Cors {5.2.3} This package contains the components to enable Cross-Origin Resource Sharing (CORS) in A...
WindowsAzure.Storage {4.4.1-preview} A client library for working with Microsoft Azure storage services including blobs, file...
PM> Install-Package Google.ProtocolBuffers
Restoring packages for 'TextSecure'.
...(lines omitted)...
Package restore completed successfully for 'TextSecure'.
Successfully installed 'Google.ProtocolBuffers 2.4.1.555' to TextSecure
PM>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment