FileNotFound exception when attempting to run an XNA F# project - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T16:09:22Z http://stackoverflow.com/feeds/question/985101 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/985101/filenotfound-exception-when-attempting-to-run-an-xna-f-project 1 FileNotFound exception when attempting to run an XNA F# project RCIX 2009-06-12T05:08:24Z 2009-11-13T12:43:05Z <p>I managed to cobble together a suitable implementation of a sample game in F# with xna. However when i try to instantiate my derived game class, the code throws a FileNotFound exception trying to access the Microsoft.Xna.Framework assembly. Why does this happen?</p> <p>Code:</p> <pre><code>#light open System open Microsoft.Xna.Framework open Microsoft.Xna.Framework.Audio open Microsoft.Xna.Framework.Content open Microsoft.Xna.Framework.Design open Microsoft.Xna.Framework.GamerServices open Microsoft.Xna.Framework.Graphics open Microsoft.Xna.Framework.Input type SampleGame() as self = class inherit Game() let mutable manager : GraphicsDeviceManager = null let mutable spriteBatch : SpriteBatch = null do manager &lt;- new GraphicsDeviceManager(self) override Game.Initialize() = base.Initialize() override Game.LoadContent() = spriteBatch &lt;- new SpriteBatch(manager.GraphicsDevice) base.LoadContent() override Game.Update(gameTime) = base.Update(gameTime) if GamePad.GetState(PlayerIndex.One).Buttons.Back = ButtonState.Pressed then self.Exit() override Game.Draw(gameTime) = manager.GraphicsDevice.Clear(Color.CornflowerBlue); base.Draw(gameTime) end let game = new SampleGame() game.Run() </code></pre> <p>I have added the proper references by the way. Edit: after some exploration, i found that my F# project is being compiled to 64 bit, which does not work with the 32 bit XNA dlls. However VS 2010 doesnt let me change the solution platform. How do i fix this?</p> http://stackoverflow.com/questions/985101/filenotfound-exception-when-attempting-to-run-an-xna-f-project/985116#985116 2 Answer by Brian for FileNotFound exception when attempting to run an XNA F# project Brian 2009-06-12T05:12:55Z 2009-06-12T05:49:15Z <p>I don't know enough about XNA, but is it 'in the GAC', or do you need to copy the XNA dlls next to your .exe? It sounds like perhaps having Microsoft.Xna.Framework.dll next to your .exe may solve it.</p> <p>EDIT</p> <p>Based on the 32/64-bit info, perhaps manually change the "&lt;Platform&gt;" in the .fsproj file. (Right click the project, 'Unload Project', then right click again and 'Edit Whatever.fsproj', poke the XML to have 'x86' (rather than 'x64' or 'AnyCPU') as the Platform value, save, and right click project and 'Reload'.) (Various F# bugs in Beta1 conspire to make the Platform/SolutionConfiguration-experience less than optimal.)</p> http://stackoverflow.com/questions/985101/filenotfound-exception-when-attempting-to-run-an-xna-f-project/1729007#1729007 1 Answer by vbSetev for FileNotFound exception when attempting to run an XNA F# project vbSetev 2009-11-13T12:43:05Z 2009-11-13T12:43:05Z <p>Check this article, which should give you an idea on how to implement this in F# <a href="http://www.xnawiki.com/index.php?title=XNA%5Fin%5FVB%5F.Net" rel="nofollow">http://www.xnawiki.com/index.php?title=XNA%5Fin%5FVB%5F.Net</a></p>