Hi
I've written my first simple XNA Xbox project, simply draws a triangle and applies an effect. When I deploy to the XBOX and debug, I get file not found on my effect file.
The file is stored in a folder called Content then FX, file called myfirsttest.fx
I load it using this command and get file not found
myFirstFX= content.Load<
Effect>(@"content\FX\myfirsttest");I've tried every combination I can think of, still says file not found everytime.
Actual error :-
Additional information: Error loading "content\FX\myfirsttest". File not found.
Help!!!