NuGet is a free, open source developer focused package management system for the .NET platform.

learn more… | top users | synonyms

0
votes
0answers
12 views

Install nuget packages to central folder

For the life of me I can't find an option to install all nuget packages to a central folder. The only option seems to be Install and that always installs into the project folder. With multiple ...
0
votes
0answers
8 views

Azure websites Deploy from Source Control fails on nuget dependency

Asp.Net v4 Webforms App has a dependency on Windows.Azure.Storage. This all works fine if i use WebDeploy to deploy it to Azure Websites. Now i want to use a branch in my bitbucket repo to have it ...
1
vote
0answers
34 views

c# app works on dev box, has dll conflicts when deployed (oh, no, not again)

My app uses Nuget packages including Spring.rest and spring.social.twitter. Two library oddities crop up when deployed (deploying is pretty much just installing the .net45 framework and then ...
0
votes
2answers
23 views

How can I create a Nuget package as part of my CI process and when building locally?

I know that this question has been asked before, but the answers that I have found have not worked for me for some reason. Please let me describe my problem. I'm using Visual Studio 2012 and TFS ...
0
votes
0answers
13 views

My files' encoding is changed by NuGet

I have a small problem when packaging one of my projects with NuGet: The files (.aspx) I put in my content folder are from a Visual Studio 2010 solution and encoded as UTF-8 with signature. After I ...
2
votes
1answer
25 views

What are the advantages of using a private NuGet server?

What are the advantages to using a private NuGet server as opposed to having shared library projects which are then included in every solution? We have several libraries which are shared across our ...
0
votes
0answers
25 views

Cannot install MahApps assembly using IronPython in Visual Studio (with PTVS 2.0)

I am trying to create a MahApps styled WPF application using IronPython 2.7.3 in Visual Studio Ultimate 2012 with PTVS. However I cannot install MahApps.Metro via Nuget using the GUI. Choosing ...
0
votes
0answers
10 views

VS 2012 Web Site NuGet packages

We are using NuGet to do dependecy management for our project files and for the most part it works great. We also use ASP.NET Web Site projects (this cannot be changed at this time), and specified ...
1
vote
1answer
41 views

Bug fixing workflow with Nuget

Currently our project use project reference to projects shared across multiple products. We are going to start using Nuget for package management. I'm wondering about best practices for typical ...
0
votes
1answer
19 views

install NuGet via PowerShell script

As far as I can tell , NuGet is meant to be installed as a Visual Studio extension : http://docs.nuget.org/docs/start-here/installing-nuget But what if I need NuGet on a machine that doesn't have ...
0
votes
0answers
7 views

NuGet single file per solution

I'm exploring NuGet possibilities in order to use it in my project. I have noticed that I can check option to let NuGet download any missing packages during build which is pretty handy. That way we ...
0
votes
3answers
34 views

Is it possible to get NuGet.exe running disconnected from Visual Studio?

I've been wrestling with NuGet for a few days now and I'm turning to StackOverflow in frustration - hopefully someone here can be kind enough to point me in the right direction. I've used NuGet ...
0
votes
0answers
14 views

Nuget & Team Foundation Server offline error

I have Team Foundation Server 2012 Express set up, and it seems to be working fine. However, when I try to add a NuGet package when not connected to TFS, I get the following error: Successfully ...
0
votes
1answer
12 views

How to read local packages folder using NuGet?

I am trying to read my local solution packages folder using NuGet.Core. If I create new UnzippedPackageRepository(pathToPackages) and call GetPackages() on it, the result is empty. I am looking at ...
-2
votes
1answer
15 views

Renaming .nupkg to .zip

We have recently changed our build process to output only .nupkg files and one of our clients doesn't like this idea.I have renamed the .nupkg files to .zip and I can access the files. My question ...
0
votes
1answer
14 views

Extracting Nupkg files using command line

Firstly, I do not want to use Visual Studio at all when dealing with the certain .nupkg files. I know there is a tool called NuGet Package Explorer and this can export nupkg files to a certain file ...
1
vote
1answer
45 views

How to solve the “System.Tuple defined multiple times issue”?

I work on a project target WP 7.5 and above, I add a packages using the Nuget in VS 2012 which name is Coding4fun(Controls). After that, the IDE give me a warning, Warning 1 The predefined ...
1
vote
0answers
25 views

How to make Nuget update page jquery references in Visual Studio 2012

I have an ASP.net solution with jquery and in some of the pages for example i have it referenced like this: <script type="text/javascript" src="Scripts/jquery-1.9.1.js"></script> ...
0
votes
0answers
38 views

ASP.NET MVC paging without Razor

I'm trying to follow this tutorial to do pagination in my MVC project using NuGet PagedList. However I'm using aspx instead of Razor. So when I'm supposed to add this line: @model ...
0
votes
0answers
29 views

Referenced Dll's not found in Team Foundation Service (or: nuget packages not available on other pc)

when I create a build for the Team Foundation Service, I get all kind of reference dll's not found exceptions. These references are added by nugget packages. I've added the 'package restore' option ...
1
vote
1answer
26 views

How Best to Write To BundleConfig From Nuget

I am creating a Nuget package for other developers on my team and I am condensing styles using SASS. The package is packed with the appropriate dependencies for using SASS and it installs fine on a ...
0
votes
0answers
24 views

Dependency manager in .net - problems with nuget

Environment brief We have a really big IT project (more than 60 solutions). This solutions can be separate in tiers like: contracts, tools, communications tools, UI, etc. There are a lot of ...
2
votes
5answers
90 views

Error installing MVVMCross from nuget into a PCL

When I try to install MvvmCross into a new PCL I receive an error. The console log is below: Package Manager Console Host Version 2.5.40416.9020 Type 'get-help NuGet' to see all available NuGet ...
5
votes
5answers
177 views

MvvMCross 3.0.6 Nuget package installation issue

I am trying to install MVVMCross NuGet package using NuGet 2.5 version. I have added the mono android and touch file to Profile104 folder. Still I am getting following exception: Attempting to ...
1
vote
0answers
11 views

How do I include an XSD file for a configuration section with a NuGet package?

I have a library with a pretty verbose configuration section. I've created an XSD and would like to distribute that with my package so that when a user installs the package, Visual Studio knows about ...
1
vote
1answer
16 views

aspose.word returns only first table and section

I have office word 2013 .docx file which has plenty of sections and tables. I don't know why all collection like below return single item while i have many of them in my .docx? Document document = ...
0
votes
1answer
17 views

How to generate dependencies in nuspec (or nupkg contains dependencies in its metadata) from csproj

Say there is a solution, contains project A, B. A referenced B in traditional way. (add reference -> projects -> B) B depends only on .NET framework libs. Here is what I do: nuget pack A.csproj ...
1
vote
1answer
36 views

NuGet Package Manager Console autocompletion suggests all files from PATH

Here's an example: You can see that NuGet's own commands are hidden among all these files (probably all the files from PATH folders) in autocomplete suggestions. Should it be that way or have I ...
0
votes
0answers
24 views

How to bring EWS Managed API 2.0 to nuget

As of now the latest version of the Exchange Web Services Managed API is 2.0. The only package on nuget is http://nuget.org/packages/Microsoft.Exchange.WebServices/ which is 1.2. What is the proper ...
0
votes
3answers
29 views

ASP.Net MVC - Update default project reference bundle using Nuget

I'm new with ASP.NET MVC 4 moving from Java framework and just started using NuGet Package Manager to update my reference. After creating 1 project and updated the reference library such as Jquery ...
0
votes
1answer
63 views

building nuget packages in teamcity

I have this almost working. I push a sln to github and then the build is triggered in Team city. Binaries are built and placed in bin\release folders for each project. I then have separate Nuget ...
0
votes
1answer
37 views

Pulling in nuget dependencies on build

I am using myget build services with a github web hook to build my nuget packages on every push to github. The github repo is at project level so the packages folder (which is at sln level) does not ...
0
votes
0answers
8 views

Can a NuGet package configure a project to use a signing key?

I have created a NuGet package to hold numerous common files across all of our internal projects. One of the items in the package is our signing key. While I can install the key in the correct place ...
0
votes
1answer
38 views

Visual Studio Msbuild Task Project Dependencies

I decided to rephrase my problem, as it seems it was not quit as clear as it should have been I want to define a project dependency (let’s call it ProjectB) which is only used for build order ...
1
vote
1answer
30 views

405 Method Not Allowed in NuGet Push

My NuGet server is throwing a 405 Not Allowed when I try to make a push. At least, thats what NuGet console says: Failed to process request. 'Method Not Allowed'. The remote server returned an error: ...
0
votes
0answers
15 views

Generating Manifest Dependency via NuGet

I have a COM library that has proved very difficult to work with. I set out to write a new library that consumes this library and abstracts away all the nastiness. To do so, I created the new library, ...
0
votes
1answer
13 views

NuGet install-package from solution

Is there a way to add a package to a project when this package is already added to another project? I would like to avoid depending on the net because sometimes we are require to work in a non ...
0
votes
0answers
27 views

How to remove XML documentation from project output directory?

After installing package with NuGet, I found the xml file in my output directory. That is installed library documentation. But I have no idea, why do I need it in the output folder of my project? Can ...
0
votes
0answers
13 views

Nuget 2.5 fails with "This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms

For nuget version 2.2.40207.9053 this works: .\NuGet.exe install (given there is a packages.config file in the same folder). The same command for version 2.5.40412.9018 fails with: This ...
0
votes
1answer
15 views

How to publish nuget package with the same version?

I have release version: 1.90. Is it possible to keep this version when I was doing patch updates for my library? Currently when I am trying to publish with the version 1.90 it shows me the error: ...
0
votes
0answers
22 views

VS2012, “Manage Nuget packages” configure package Dir

I have various projects that I use in different solutions (for the same application). I have added NuGet packages to this project in say Solution1, if I later try and do a TFS build for Solution2 wich ...
0
votes
1answer
38 views

Package Manger Console Not Working

When I start visual studio express 2012 for web I get this error in the package manager console. Cannot load Windows PowerShell snap-in Microsoft.PowerShell.Core because of the following error: ...
0
votes
0answers
80 views

jquery-2.0.0.min.map “Uncaught SyntaxError: Unexpected token :”

Ever since I installed jQuery 1.9 and now 2.0 in an ASP.NET MVC4 project using Nuget in Visual Studio 2012, an additional .map file has been included in the scripts folder. I noticed in the console ...
-2
votes
1answer
74 views

What directory to extract Entity Framework 6 NuGet package to

I'm working in VS 2012. I just downloaded the Entity Framework 6 Alpha3 NuGet package. I put it in the NuGet folder for quick access. When I use the command PM> Get-Package -Filter ...
0
votes
1answer
31 views

How to prevent Nuget from updating automatically package (minor) versions?

In the VS solution, I have as dependencies (in the packages.config file) a package A, version 2.0.0 which has dependency on package B version >= 5.0.0.0. The latest version of A is 2.1.0 and has the ...
0
votes
1answer
46 views

Could not load Ninject assembly in Web.config

I am trying to debug my application but at that time Error is shown as below: Could not load file or assembly 'Ninject, Version=3.0.0.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7' or one of ...
1
vote
1answer
62 views

Git-friendly PowerShell package structure

I have a number of script (.PS1) and module (.PSM1) files that I would like to version control (I'm planning to use Github). I'm hoping to deploy them as a package, perhaps by using NuGet. I have ...
0
votes
1answer
151 views

Error in loading Azure Storage 2.0 — could not load Microsoft.Data.OData 5.0.2

My hosted service uses Azure Storage 2.0 (exactly 2.0.5.1 from Nuget). Under Visual Studio 2010 I had no problem. I switched to Visual Studio 2012 and now in some web site of my main web role I get ...
0
votes
1answer
57 views

Nuget package restore

I am trying to work out how NuGet knows what packages it needs to restore (and how it knows where to find them) in the case that they are not present locally (i.e. when the packages have not been ...
0
votes
1answer
34 views

Nuget autoupdate in website

For a customer we are trying to build a webb application that they can build patches (new versions) and their customers can by them self by a click in the app update. I have made some minor ...

1 2 3 4 5 26