Tagged Questions
4
votes
4answers
145 views
How to re-install nuget package that's already in the solution's packages directory?
Background / History
I have a solution that contains an MVC4 project.
I downloaded a nuget package (specifically the dotLess package). This added a packages folder to my solution directory which ...
0
votes
2answers
170 views
EntityFramework 5 install
I created an ASP.NET MVC4 project in VS 2010, then decided I wanted the 4.5 framework so opened the project in VS 2012 and changed the target framework to 4.5.
I got some compile errors which I am ...
2
votes
1answer
299 views
NuGet adding rogue line to web.config MVC4
Every time I install ANYTHING using Nuget, this gets added to my <Runtime><asseblyBinding> section in my web.config:
<dependentAssembly>
<assemblyIdentity ...
0
votes
1answer
112 views
MVCAwesome, MVC4 and NuGet
I created a new MVC4 project using Razor syntax, and used NuGet to add MVCAwesome.
Looking at this page, it appears that all the expected files and configuration files appear to be in place. I made ...
1
vote
0answers
207 views
MVC 4 - cannot create database using NuGet Package manager console
I'm trying to create a new database using Visual Studio 2012 NuGet package manager console.
I have done all the steps to enable migration, the Migrations folder was successfully created, and its ...
0
votes
0answers
30 views
Library reference issue: MVC4 Web API uses Newtonsoft.Json 4.x, Ext.NET v1.x uses Json 3.5
I've got this annoying problem where I've added WebAPI to my MVC4 webapplication that also uses Ext v1.2. I cannot just go and update EXT ( tried that - broke the whole application ). However - I ...
0
votes
0answers
45 views
Codefirst method and Nuget Package Manager Console wtih Add-Miration Command
In a newly created MVC4 application, there is already a UserProfile class which represents the table UserProfile in the DB.
Now you add a new property to the class
for example, UserAge
public int ...
0
votes
0answers
71 views
How to use MvcSiteMapProvider nuget package with T4MVC
My MVC 4 application is using T4MVC NuGet package.
Now I have also started using MvcSiteMapProvider NuGet package where we can specify sitemap in the XML file they provide.
How can I use T4MVC ...