Added comments
This commit is contained in:
parent
56691b3145
commit
9f4e76fa4c
@ -5,11 +5,11 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
<DocumentationFile>C:\Users\Holger\Desktop\SmallInjectorDemo\SmallInjector\SmallInjector.xml</DocumentationFile>
|
<DocumentationFile>bin\debug\SmallInjector.xml</DocumentationFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
<DocumentationFile>C:\Users\Holger\Desktop\SmallInjectorDemo\SmallInjector\SmallInjector.xml</DocumentationFile>
|
<DocumentationFile>bin\release\SmallInjector.xml</DocumentationFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
using System;
|
namespace SmallInjectorDemo.Interfaces
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace SmallInjectorDemo.Interfaces
|
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Defines the <see cref="IModule" />
|
||||||
|
/// </summary>
|
||||||
public interface IModule
|
public interface IModule
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -2,8 +2,10 @@
|
|||||||
|
|
||||||
namespace SmallInjectorDemo.Items
|
namespace SmallInjectorDemo.Items
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Defines the <see cref="ModuleA" />
|
||||||
|
/// </summary>
|
||||||
public class ModuleA : IModule
|
public class ModuleA : IModule
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -2,8 +2,10 @@
|
|||||||
|
|
||||||
namespace SmallInjectorDemo.Items
|
namespace SmallInjectorDemo.Items
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Defines the <see cref="ModuleB" />
|
||||||
|
/// </summary>
|
||||||
public class ModuleB : IModule
|
public class ModuleB : IModule
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -2,8 +2,10 @@
|
|||||||
|
|
||||||
namespace SmallInjectorDemo.Items
|
namespace SmallInjectorDemo.Items
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Defines the <see cref="ModuleC" />
|
||||||
|
/// </summary>
|
||||||
public class ModuleC : IModule
|
public class ModuleC : IModule
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user