Difference between revisions of "Module Tips and Tricks"

From Kerbal Space Program Wiki
Jump to: navigation, search
(Created page with "== Visual Studio Tips == === Package As You Build === I frequently set up my plugins so they are shoved into MyKSPSolution/bin/Plugins after being compiled so it's much easi...")
 
m (Adding to category.)
Line 22: Line 22:
  
 
-- [[User:N3X15|N3X15]] ([[User talk:N3X15|talk]]) 19:16, 6 March 2012 (UTC)
 
-- [[User:N3X15|N3X15]] ([[User talk:N3X15|talk]]) 19:16, 6 March 2012 (UTC)
 +
 +
[[Category:Modding Tutorials]]

Revision as of 18:02, 18 September 2012

Visual Studio Tips

Package As You Build

I frequently set up my plugins so they are shoved into MyKSPSolution/bin/Plugins after being compiled so it's much easier to package, and so I can create parts in bin/Parts.

  1. Right-click on your plugin project (NOT the solution) and choose Properties.
  2. Click on the Build tab.
  3. Change Output Path to ..\bin\Plugins\.
  4. Create YourKSPSolution\bin\Plugins and YourKSPSolution\bin\Parts.

Visual Studio should now place compiled binaries into bin\Plugins for packaging. -- N3X15 (talk) 19:16, 6 March 2012 (UTC)

Automatically Copy to KSP For Testing

The repetitive process of copying your plugins to KSP really sucks, so I have a simple modification that makes things quite a bit easier.

  1. Right-click on your plugin project (NOT the solution) and choose Properties.
  2. Open the Build Events tab
  3. In the Post-build event box, type copy "$(TargetPath)" "C:\path\to\KSP\Plugins\" (Yes, the quotes are needed!)
    • You can add more stuff for copying over parts, too.

-- N3X15 (talk) 19:16, 6 March 2012 (UTC)