Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the Facebook C# SDK. My site was working fine yesterday.

This morning on running a build I'm getting:

'ASP.Facebook' does not contain a definition for 'FacebookSettings'

I've no ideas what caused this, can anyone help?

share|improve this question

2 Answers

up vote 1 down vote accepted

ok undid what i did yesterday which was to basically install the microsoft web helper package from nuget. not sure why this conflicted - perhaps there is a workaround?

share|improve this answer

This was caused by a change in the SDK from 4.x to 5.x

The methods to access the Facebook settings from the config file changed, so your code should change from this:

FB.init({ appId: '<%:FacebookSettings.Current.AppId %>', status: true, cookie: true, xfbml: true });

to this:

FB.init({ appId: '<%: Facebook.FacebookContext.Current.AppId %>', status: true, cookie: true, xfbml: true });

Hope this helps.

share|improve this answer
but im still using the 4.X SDK. – raklos Mar 18 '11 at 11:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.