Template and build tasks for developing a cross-platform multi-target .NET Framework and .NET Core FNA project in VSCode.
 
 
Go to file
cosmonaut 3d6f8e3705 fix debug launcher 2022-08-30 19:28:00 -07:00
.vscode fix debug launcher 2022-08-30 19:28:00 -07:00
ProjectName .NET 6 + indentation fixes 2022-08-29 21:39:34 -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 .NET 6 + indentation fixes 2022-08-29 21:39:34 -07:00
LICENSE add MIT license 2020-03-03 15:20:28 -08:00
ProjectName.Core.sln set up sln files with correct configuration 2021-02-02 20:06:56 -08:00
ProjectName.Framework.sln set up sln files with correct configuration 2021-02-02 20:06:56 -08:00
README.md .NET 6 + indentation fixes 2022-08-29 21:39:34 -07:00
install.sh remove unused FNA_VERSION var 2022-08-29 21:53:48 -07:00

README.md

FNA-VSCode-Template

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

The generated solution file will also work in regular Visual Studio.

Features

  • Includes project boilerplate code
  • Build tasks for both .NET Framework, Mono, and .NET 6 side by side
  • VSCode debugger integration

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
  • On Windows, add C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin to your system environment PATH variable after installing Build Tools for VS 2019

Usage

  • Open the project directory in VSCode
  • Press Ctrl-Shift-B to open the build tasks menu
  • Framework tasks use .NET Framework to build and run (Windows only)
  • Mono tasks use Mono to build and run
  • .NET 6 tasks use .NET 6 to build and run
  • Press F5 to build and debug

Acknowledgments

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