Managed DirectX with C#

  • Thread starter Thread starter koby
  • Start date Start date
K

koby

Hi

I want to start working with Managed DirectX,
aftre I install the SDX I have Microsoft.DirectX....xml
file and not DLLs
to references.
Am I nead to compile any project?
How I get the DLLs ?

Thanks
 
koby said:
Hi

I want to start working with Managed DirectX,
aftre I install the SDX I have Microsoft.DirectX....xml
file and not DLLs
to references.
Am I nead to compile any project?
How I get the DLLs ?

Thanks

I may be wrong here, but I recall someone (maybe even MS?) saying that
you should copy them out of your GAC (they may also be somewhere in
Program Files) into your project directory.

Do not deploy the DLLs with your app, they will be pulled from the GAC
at runtime.

This is the case with all the GAC'd .NET assemblies. For example,
System.DLL is GAC'd, but it also exists in
C:\windows\Microsoft.NET\Framework\v1.1.4322 so that you can reference
the assembly directly in VS.NET.

-c
 
Make sure your assemblies are actually installed. Installing the SDK
does not automatically install the managed assemblies.

To do this try installing with:

dxsetup.exe /InstallManagedDX

Toby Jones
Software Engineer
Human Head Studios
 
Have a look in C:\WINDOWS\Microsoft.NET and see if it contains the Managed DirectX folder, you'll find the assemblies and xml files there.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Problem with C# and DirectX SDK 0
DirectX Question 8
Can't run DirectX samples 1
Newbie DirectX 9 7
how to add namespace 4
DirectX 9 3
directX 9.0 sdk... 4
Resource DLL generation at compilation stage 5

Back
Top