Managed DirectX with C#

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
 
C

Chad Myers

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
 
T

Toby Jones

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
 
G

Guest

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

Top