fix the multi tfm test to not build net20

This commit is contained in:
Bryan Thornbury 2016-10-20 15:33:47 -07:00
parent 1c1f4c462f
commit 16ff3734a3
4 changed files with 38 additions and 3 deletions

View file

@ -0,0 +1,17 @@
using System;
using System.Xml;
namespace ConsoleApplication
{
public class Program
{
public static void Main()
{
Console.WriteLine("Hello World!");
#if NET20 || NET35 || NET45 || NET461
// Force XmlDocument to be used
var doc = new XmlDocument();
#endif
}
}
}