Shorten another Test Asset name

This commit is contained in:
Piotr Puszkiewicz 2017-02-28 13:11:34 -08:00
parent 88ab21600d
commit 3b04278b65
5 changed files with 2 additions and 2 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
}
}
}