2017-03-03 05:04:03 +00: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 18:54:42 +00:00
|
|
|
|
using System.Xml;
|
2016-02-23 14:53:51 +00:00
|
|
|
|
|
|
|
|
|
namespace ConsoleApplication
|
|
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
public static void Main()
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Hello World!");
|
2016-04-20 18:54:42 +00:00
|
|
|
|
#if NET20 || NET35 || NET45 || NET461
|
|
|
|
|
// Force XmlDocument to be used
|
|
|
|
|
var doc = new XmlDocument();
|
|
|
|
|
#endif
|
2016-02-23 14:53:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|