add trimming of published output based on sharedfx
Any dependencies which **exactly** match the version requested in the graph originating at the `type: platform` dependency (if any) are trimmed from the publish output
This commit is contained in:
parent
8df6f5405d
commit
62b7740c95
5 changed files with 101 additions and 1 deletions
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
|
||||
namespace PortableApp
|
||||
{
|
||||
public static class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello, World!");
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue