2017-03-02 21:04:03 -08:00
|
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
|
|
|
|
|
using System;
|
2016-04-20 11:54:42 -07:00
|
|
|
|
using System.Xml;
|
2016-02-23 15:53:51 +01:00
|
|
|
|
|
|
|
|
|
namespace ConsoleApplication
|
|
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
public static void Main()
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Hello World!");
|
2016-04-20 11:54:42 -07:00
|
|
|
|
#if NET20 || NET35 || NET45 || NET461
|
|
|
|
|
// Force XmlDocument to be used
|
|
|
|
|
var doc = new XmlDocument();
|
|
|
|
|
#endif
|
2016-02-23 15:53:51 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|