Template and build tasks for developing a cross-platform multi-target .NET Framework and .NET Core FNA project in VSCode.
 
 
Go to file
Evan Hemsley 470d41ab70 add fnalibs to gitignore 2020-07-29 14:50:01 -07:00
.vscode fix working directory on tasks + cross framework compat 2020-06-23 21:54:09 -07:00
ProjectName fix working directory on tasks + cross framework compat 2020-06-23 21:54:09 -07: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 change default branch to main 2020-07-29 14:47:47 -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.