Skip to content

SE Visual Studio Setup

MrMors edited this page Sep 2, 2019 · 2 revisions

This guide takes insperation from a number of sources?

This whole guide will be based on having followed the BE Blender Setup guide I wrote.

Install Visual Studio 2017

  1. First of all, obviously, you need to make sure you have installed Visual Studio 2017. This will work with all editions, but the Community edition is completely free. You can find instructions on how to install that here. For Space Engineers development you need at least the .NET desktop development workload.
  2. After downloading VS, launch the installer and when asked what Workloads you would like to install select .NET desktop development and then click Install
  3. Install Malware’s VS plugin: https://github.com/malware-dev/MDK-SE/releases

Visual Studio Solution Setup

  1. Launch VS and create a new project (File > New > Project)
  2. Select the template of Other Project Types > Visual Studio Solutions > Blank Solution
  3. At the bottom of the New Project dialog enter the following:
    • Name: Space Engineers Mods
    • Location: D:\Modding\SpaceEngineers\Mods\
    • Solution name: Space Engineers Mods
    • Framework: .NET Framework 4.6.1
    • Create directory for solution: Unchecked
    • Create new Git repository: Checked
    • Click OK
  4. On the right hand pane titled Solution Explorer right click Solution ‘Space Engineers Mods’ and then select Add > Existing Item..
  5. In the folder viewer navigate to the Assets folder and select the three PowerShell scripts and click Add
  6. Once again on the right hand pane titled Solution Explorer right click Solution ‘Space Engineers Mods’ and then select Add > Existing Item..
  7. This time select .gitignore and .gitattributes
  8. Save All

Clone this wiki locally