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