1 / 20

Create A Visual Studio Template

Create A Visual Studio Template. For OpenGL Application. Don’t waste time on adding references, copying files & writing the same code again & again. Get to the real programming immediately. Create a template for the things which are recurrent. Launch Microsoft Visual Studio.

pomona
Télécharger la présentation

Create A Visual Studio Template

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Create A Visual Studio Template For OpenGL Application

  2. Don’t waste time on adding references, copying files & writing the same code again & again. Get to the real programming immediately. Create a template for the things which are recurrent.

  3. Launch Microsoft Visual Studio

  4. Create A Windows Forms Application with any name

  5. In the right window pane, RIGHT CLICK On References, & click Add Reference…

  6. Click Browse

  7. Navigate To lib folder, select csgl.dll and click OK.

  8. Write the statement “using CsGL.OpenGL;” as shown.

  9. Write the following code inside the class Form1. You may write all the code you wish to be prewritten at the time of creation of a new application.

  10. Go To Project  Properties

  11. In the Build tab, change the Platform Target to x86. Save the project.

  12. Go to lib folder. Copy the path of lib folder from the address bar.

  13. In the Build Events tab of Project Properties, write the following command in the Post-build event command line box… copy “PATH” “$(TargetDir)” In place of PATH, paste the previously copied path and add \csgl.native.dll at the end, so the whole command looks like: copy “F:\CsGL\GL\csgl1.4.1.dll\lib\csgl.native.dll” “$(TargetDir)”

  14. In the File menu, click on Export Template…

  15. In the Export Template Wizard, select Project template, and click Next.

  16. Write a template name. Template description is optional. Click Finish & Close Visual Studio.

  17. Now when you create a new project in visual studio, a new project type will be available under My Templates. Select that, write a project name, and click ok. All the code will be prewritten & reference to csgl.dll added by default.

  18. Once the template has been created, do not change the location of the lib folder or csgl.dll, or else you will have to add the reference again every time.If it is necessary to change the location, then the template must be recreated for the new location of csgl.dll.

  19. You have to do this whole procedure only ONCE. Afterwards, you can use the template to create an OpenGL project. Now you don’t have to…1. Add reference to csgl.dll every time you create an OpenGL Application.2. Write the statement using CsGL.OpenGL;3. Create the View class every time.4. Copy the csgl.native.dll to output folder.

  20. THANKYOUTutorial BySYED GHAZANFAR ABBAS RIZVI

More Related