Framework Setup

This commit is contained in:
2020-04-19 21:56:56 -06:00
parent 3d4a0515e5
commit 1acf94c900
220 changed files with 809047 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#pragma warning disable 1591
namespace Example
{
public interface IService { }
public class MyService : IService
{
public MyService(IDependencyA a, DependencyB<string> b, RuntimeDependencyC c) { }
}
public interface IDependencyA { }
public class DependencyA : IDependencyA { }
public class DependencyB<T>
{
}
public class RuntimeDependencyC
{
}
}