Template and build tasks for developing a cross-platform multi-target .NET Framework and .NET Core FNA project in VSCode.
 
 
Go to file
cosmonaut a2529d56c8 build and run x64 + dotnet 5 2021-02-02 20:37:02 -08:00
.vscode build and run x64 + dotnet 5 2021-02-02 20:37:02 -08:00
ProjectName build and run x64 + dotnet 5 2021-02-02 20:37:02 -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 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 build and run x64 + dotnet 5 2021-02-02 20:37:02 -08:00
install.sh set up sln files with correct configuration 2021-02-02 20:06:56 -08:00

README.md

FNA-VSCode-Template

Template and build tasks for developing a cross-platform multi-target .NET Framework, Mono, and .NET 5 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 5 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
  • 5 tasks use .NET 5 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.