dotnet-installer/TestAssets/TestProjects/TestAppWithContentPackage/Program.cs

20 lines
485 B
C#
Raw Normal View History

2016-02-17 18:08:27 +00:00
using System;
using System.Reflection;
namespace TestAppWithContentPackage
{
public class Program
{
public static int Main(string[] args)
{
foreach (var name in Assembly.GetEntryAssembly().GetManifestResourceNames())
{
Console.WriteLine(name);
}
Console.WriteLine(typeof(Foo).FullName);
Console.WriteLine(typeof(MyNamespace.Util).FullName);
return 0;
}
}
}