To set up my development framework for c# in visual studio code,
I want to use the System.Windows.Forms
refernce in order to set up a window.
Code:
using System;
using System.Collections;
using System.Windows.Forms;
namespace Softwaredevelopment
{
public partial class Form1 : Form
{
public Form1()
{
//tbd
}
}
}
I get the error:
Missing Assembly Reference.
What do I have to add in the project.json
file or the .csproj
file
to get the ability to create a window.