Malfist
Malfist

Reputation: 31815

Compiling content without XNA

I have a Content Project for an XNA game, but I'm embedding the game inside a WinForm so I'm not actually using the Microsoft.XNA.Framework.Game class.

How can I make the Content project build with the WinForm's project? I tried adding it as a reference, but the Project isn't listed to be added.

To make it clear, I have two projects in my solution:

How can I make XNARenderContent build along with my KinectGraphics' project?

Upvotes: 0

Views: 677

Answers (1)

Neil Knight
Neil Knight

Reputation: 48587

As you are using a WinForms application, can I draw your attention to this article.

You can change the Build Order if this is causing you a problem.

If you are struggling to get the Content project in your WinForms application as a reference, then I would definitely take a look at the link above.

Upvotes: 1

Related Questions