Asset refactoring and content files
This commit is contained in:
parent
388bb7260c
commit
a71112ce8f
34 changed files with 1301 additions and 173 deletions
19
TestAssets/TestProjects/TestAppWithContentPackage/Program.cs
Normal file
19
TestAssets/TestProjects/TestAppWithContentPackage/Program.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue