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

20 lines
555 B
C#
Raw Normal View History

using System;
2017-01-26 17:15:30 +00:00
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}");
}
}
}