Only adding rids for full framework TFMs if the project.json does not already have Runtimes in its Runtimes section.

This commit is contained in:
Livar Cunha 2016-12-18 18:45:35 -08:00
parent 9c3141b63f
commit b2ce6c794a
5 changed files with 101 additions and 14 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
}
}
}