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 am trying to run a background task using ScheduledAgent in Windows Phone 8. Everything gets compiled properly, but when I run the app on Emulator/Device, I get a crash saying

"'System.IO.FileNotFoundException' occurred in System.Windows.ni.dll"

The same code runs properly in Windows Phone 7.

For Windows Phone 8 I am using Visual Studio 2012

For Windows Phone 7 I am using Visual Studio 2010

share|improve this question
And how are we supposed to find the issue without seeing the code? – KooKiz Dec 7 '12 at 10:10
1  
You're probably trying to get a file that: does not exist/is mispelled etc. Can you have more detail in your exception, maybe in debug mode, or try to post your code. – Pierpowl Dec 7 '12 at 10:11

1 Answer

up vote 1 down vote accepted

This was because I missed adding the background agent dll in the main application. Once I add that all seems to be fine :-)

share|improve this answer

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.