Skip to content

Commit

Permalink
Renamed configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
Workshop2 committed Jan 22, 2016
1 parent f6bd8f7 commit faaa88a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Noobot.Toolbox/Noobot.Toolbox.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Configuration.cs" />
<Compile Include="ToolboxConfiguration.cs" />
<Compile Include="Pipeline\Middleware\AdminMiddleware.cs" />
<Compile Include="Pipeline\Middleware\AutoResponderMiddleware.cs" />
<Compile Include="Pipeline\Middleware\CalculatorMiddleware.cs" />
Expand Down
2 changes: 1 addition & 1 deletion src/Noobot.Toolbox/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[assembly: AssemblyTitle("Noobot.Toolbox")]
[assembly: AssemblyDescription("Usefull Extensions for Noobot, a SlackBot. https://github.com/noobot/")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Noobot")]
[assembly: AssemblyCompany("Workshop2")]
[assembly: AssemblyProduct("Noobot.Toolbox")]
[assembly: AssemblyCopyright("Copyright © Noobot 2016 - Simon Colmer")]
[assembly: AssemblyTrademark("")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ namespace Noobot.Toolbox
/// <summary>
/// A standard configuration with all of the middleware & plugins found in the toolbox. Note: This is an example and probably shouldn't be used in production code.
/// </summary>
public class Configuration : ConfigurationBase
public class ToolboxConfiguration : ConfigurationBase
{
public Configuration()
public ToolboxConfiguration()
{
//UseMiddleware<AutoResponderMiddleware>();
UseMiddleware<WelcomeMiddleware>();
Expand Down

0 comments on commit faaa88a

Please sign in to comment.