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:
parent
9c3141b63f
commit
b2ce6c794a
5 changed files with 101 additions and 14 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue