Pure.Krome
Pure.Krome

Reputation: 86957

What is the difference between the FacebookWebMVC the Facebook NuGet packages?

What's the difference between these two packages?

enter image description here

and

enter image description here

Now before everyone jumps in and says: One is for the ASP.NET MVC framework website(s) and the other is not, I'm under the impression that the WebMvc is a wrapper for the MVC framework.

As such, we don't need to write as much code.

So .. can someone please explain the difference with code.

eg. With the Core dll, u would have to write these 10 lines. With the WebMvc dll you can just use this Action Method Attribute or whatever...

Also, bonus points to any tutorials that explain how to use it, or some sample website code in codeplex, github, bitbucket, where-ever...

Upvotes: 0

Views: 368

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038850

The FacebookWebMvc depends on the FacebookWeb NuGet so when you install it it also installs the base package:

enter image description here

It contains helper functions adapted for ASP.NET MVC but they all use the core library.

Upvotes: 1

Related Questions