dotnet-installer/TestAssets/NonRestoredTestProjects/PJDeprecatedResourceExclude/Program.cs

20 lines
558 B
C#
Raw Normal View History

2017-01-26 19:00:50 +00:00
using System;
using System.Linq;
using System.Reflection;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
var thisAssembly = typeof(Program).GetTypeInfo().Assembly;
var resources = from resourceName in thisAssembly.GetManifestResourceNames()
select resourceName;
var resourceNames = string.Join(",", resources);
Console.WriteLine($"{resources.Count()} Resources Found: {resourceNames}");
}
}
}