Tagged Questions
14
votes
1answer
3k views
ASP.NET MVC 3 - Issues with microsoft-web-helpers v1.1
I upgraded my microsof-web-helpers package from nuget and it itself depends on facebook and twitter APIs. Now when my app attempts to run I get the following error:
Compiler Error Message: CS0246: ...
11
votes
1answer
531 views
How do you include Xml Docs for a class library in a NuGet package?
I am creating a NuGet package for a C# class library, and I would like to include generated Xml Documentation with the library. This is my nuspec file:
<?xml version="1.0" encoding="utf-8"?>
...
3
votes
1answer
67 views
System.InvalidProgramException when executing unit tests in MSTest after Microsoft Security update MS13-004
After applying the Microsoft Security update on the 8th of January 2013 http://technet.microsoft.com/en-us/security/bulletin/ms13-004 we have started to experience failures in our CI builds on our ...
2
votes
3answers
684 views
Create nuget package for a solution with multiple projects
We are currently building a solution with several projects.
We have something like this:
- Common
- Logging
- Logging.NLog
- Threading
So Logging.NLog is dependant on Logging, Logging on ...
2
votes
1answer
38 views
When creating a NuGet package, how do I specify a framework version for an assembly?
I am attempting to create a NuGet package using NuGet core as part of a build process. The build process creates specific framework versions, 3.5, 4.0, and 4.5. How do I specify the framework ...
2
votes
2answers
72 views
Cannot get the TinyMCE.MVC.Jquery.Sample to work
I have downloaded the TinyMCE.MVC.Jquery and TinyMCE.MVC.Jquery.Sample into a new MVC.NET 4 project, however I cannot seem to get it to show in the sample TinyMCESampleJQuery cshtml page.
I only ...
2
votes
1answer
315 views
TinyMCE.MVC.Jquery won't show?
So working in visual studio 2012 I downloaded the TinyMCE.MVC.JQuery package and installed it using NuGet. Once in stalled i followed this tutorial to set it up:
...
1
vote
2answers
300 views
Why when I install Silverlight toolkit from nuget does not find the System.Windows.Controls.Toolkit.Internals?
I've install Silverlight Toolkit from Nuget, but when I tried to run the project, it throws me one error which tells me:
{System.IO.FileNotFoundException: Could not load file or assembly
...
1
vote
1answer
201 views
Nuget pack won't install
I am having problems install some Elmah packages in my project(if I make a new solution these packages work)
Attempting to resolve dependency 'elmah (= 1.2.0.1)'.
Attempting to resolve dependency ...
1
vote
1answer
2k views
Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Common' or one of its dependencies
I have searched google for this and could not find the solution to the problem.
My Website references DAL (custom dll) which references Enterprise Library Data Access Components.
I have added the ...
1
vote
0answers
128 views
Trouble installing MathNet.Numerics in VS2010 Express, System.Numerics is missing?
I'm new here, just getting my feet wet writing my first Windows Phone 7 app. Specifically, I need to do linear regression on some data to get a simple y=Ax^2+Bx+C best fit curve. After some ...
1
vote
0answers
112 views
Missing “System.Drawing” in Global Assembly Cache package install with NuGet [closed]
I recently dealt with some "dependency hell" version conflicts with JSON.Net trying to use RavenDB and Selenium Webdriver in the same library, and hence I reinstalled Visual Studio 2010 and Visual ...
0
votes
1answer
49 views
.NET Library to handle DateTime output nicer [duplicate]
Possible Duplicate:
How do I calculate relative time?
I did stumble upon a nice library some time ago that gives you a nicer way when we're dealing with Dates like:
@DateTime.AddDays(-1) ...
0
votes
3answers
83 views
NuGet package with a single class as source code
I have a simple class I like to use when I do unit tests. I'd like to create a NuGet package so I can easily use it and spread out updates between my solutions.
Will I have to create an assembly of ...
0
votes
1answer
158 views
How to make nuget create folders in the project?
Is there a way to add specific folders in the project that the package is installed?
For example, according to this blogpost you can add multiple files to the project, but what I want to add are ...