Template and build tasks for developing a cross-platform multi-target .NET Framework and .NET Core FNA project in VSCode.
 
 
Go to file
cosmonaut 5c438c1a70 enable mono debugger vscode integration 2020-11-16 22:45:13 -08:00
.vscode enable mono debugger vscode integration 2020-11-16 22:45:13 -08:00
ProjectName split mono and framework build and run tasks 2020-11-16 22:29:21 -08:00
build fix lib copy location for windows 2020-06-19 13:52:40 -07:00
.gitignore add fnalibs to gitignore 2020-07-29 14:50:01 -07:00
.gitmodules remove FNA submodule 2020-07-11 14:00:13 -07:00
FNA.Settings.props add .NET Core support 2020-03-03 15:28:52 -08:00
LICENSE add MIT license 2020-03-03 15:20:28 -08:00
ProjectName.Core.sln add .NET Core support 2020-03-03 15:28:52 -08:00
ProjectName.Framework.sln initial commit 2020-03-03 15:18:34 -08:00
README.md update readme with some windows stuff 2020-03-03 16:25:53 -08:00
install.sh bump FNA to 20.10 2020-10-30 11:28:45 -07:00

README.md

FNA-VSCode-Template

Template and build tasks for developing a cross-platform multi-target .NET Framework and .NET Core FNA project in VSCode.

Features

  • Includes project boilerplate code
  • Build tasks for both .NET Framework and .NET Core side by side
  • Press F5 to build and debug in-editor with Core Debugger

Requirements

Installation

  • Make sure you have Git Bash from Git for Windows if you are on Windows
  • Download this repository
  • Run install.sh
  • Move the newly created project directory wherever you want

Usage

  • Open the project directory in VSCode
  • Press Ctrl-Shift-B to open the build tasks menu
  • Framework tasks use .NET Framework or Mono to build and run
  • Core tasks use .NET Core to build and run
  • Press F5 to build and debug with Core Debugger

Acknowledgments

Thanks to Andrew Russell and Caleb Cornett's FNA templates for a starting point for this template.