sln reader/writer (#4870)

* Snap of sln reader/writer from https://github.com/mono/monodevelop

* Remove unnecessary code

* Create a new test asset with an sln file because adding an sln to an existing one broke other tests

* Remove commented out line

* Removing unneeded PropertyGroup per PR comments

* Update the license

* Fixing the license
This commit is contained in:
Justin Goshi 2016-11-30 14:08:28 -10:00 committed by GitHub
parent 14152207f6
commit 8afb8ebf31
12 changed files with 2395 additions and 1 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}