Added comments

This commit is contained in:
Holger Börchers 2019-07-29 23:42:59 +02:00
parent 56691b3145
commit 9f4e76fa4c
5 changed files with 18 additions and 13 deletions

View File

@ -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>

View File

@ -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
{ {
} }

View File

@ -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
{ {
} }
} }

View File

@ -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
{ {
} }
} }

View File

@ -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
{ {
} }
} }