Skip to content

Commit

Permalink
renaming Salaros.Config namespace to Salaros.Configuration
Browse files Browse the repository at this point in the history
leaving NuGet package id intact
  • Loading branch information
salaros committed Jun 29, 2018
1 parent d0db822 commit 1c92ce8
Show file tree
Hide file tree
Showing 18 changed files with 1,658 additions and 1,656 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/ConfigParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
using System.IO;
using System.Linq;
using System.Text;
using Salaros.Config.Logging;
using Salaros.Configuration.Logging;

namespace Salaros.Config
namespace Salaros.Configuration
{
public class ConfigParser
{
Expand Down Expand Up @@ -55,7 +55,7 @@ public ConfigParser(ConfigParserSettings settings = null)

/// <inheritdoc />
/// <summary>
/// Initializes a new instance of the <see cref="T:Salaros.Config.ConfigParser" /> class.
/// Initializes a new instance of the <see cref="T:Salaros.Configuration.ConfigParser" /> class.
/// </summary>
/// <param name="configFile">The configuration file.</param>
/// <param name="settings">The settings.</param>
Expand Down
10 changes: 5 additions & 5 deletions src/ConfigParser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.0;net40;net45</TargetFrameworks>
<OutputPath>..\bin\$(Configuration)\</OutputPath>
<LangVersion>latest</LangVersion>
<RootNamespace>Salaros.Config</RootNamespace>
<RootNamespace>Salaros.Configuration</RootNamespace>
<AssemblyName>ConfigParser</AssemblyName>
</PropertyGroup>

Expand All @@ -22,9 +22,9 @@
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://raw.githubusercontent.com/salaros/ConfigParser/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/salaros/ConfigParser</PackageProjectUrl>
<RepositoryUrl>https://github.com/salaros/ConfigParser</RepositoryUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/salaros/config-parser/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/salaros/config-parser</PackageProjectUrl>
<RepositoryUrl>https://github.com/salaros/config-parser</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>configuration,configuration-files,file,configuration-file,config,ini,cfg,configs,conf,mono,dotnet,managed,csharp,cross-platform</PackageTags>
<NeutralLanguage>English</NeutralLanguage>
Expand All @@ -49,7 +49,7 @@
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" Condition="'$(TargetFramework)' != 'net40'" />
<Reference Include="Microsoft.CSharp" Version="4.0.0" Condition="'$(TargetFramework)' == 'net40'" />
</ItemGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DefineConstants>TRACE;LIBLOG_PUBLIC</DefineConstants>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/ConfigParserException.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using System;

namespace Salaros.Config
namespace Salaros.Configuration
{
public class ConfigParserException : Exception
{
/// <inheritdoc />
/// <summary>
/// Initializes a new instance of the <see cref="T:Salaros.Config.ConfigParserException" /> class.
/// Initializes a new instance of the <see cref="T:Salaros.Configuration.ConfigParserException" /> class.
/// </summary>
/// <param name="message">Message.</param>
/// <param name="lineNumber">Line number.</param>
Expand Down
2 changes: 1 addition & 1 deletion src/ConfigParserSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Text.RegularExpressions;
using System.Threading;

namespace Salaros.Config
namespace Salaros.Configuration
{
public class ConfigParserSettings
{
Expand Down
2 changes: 1 addition & 1 deletion src/Entries/ConfigComment.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Salaros.Config
namespace Salaros.Configuration
{
public class ConfigComment : ConfigLine
{
Expand Down
2 changes: 1 addition & 1 deletion src/Entries/ConfigKeyValue.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Salaros.Config
namespace Salaros.Configuration
{
public class ConfigKeyValue<T> : ConfigLine, IConfigKeyValue
{
Expand Down
5 changes: 2 additions & 3 deletions src/Entries/ConfigLine.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System.Linq;
using System.Text.RegularExpressions;
using System.Text.RegularExpressions;

namespace Salaros.Config
namespace Salaros.Configuration
{
public class ConfigLine : IConfigLine
{
Expand Down
4 changes: 2 additions & 2 deletions src/Entries/ConfigSection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Collections.ObjectModel;
using System.Linq;

namespace Salaros.Config
namespace Salaros.Configuration
{
public class ConfigSection : IConfigLine
{
Expand All @@ -14,7 +14,7 @@ public class ConfigSection : IConfigLine
#region Constructors

/// <summary>
/// Initializes a new instance of the <see cref="T:Salaros.Config.ConfigSection" /> class.
/// Initializes a new instance of the <see cref="T:Salaros.Configuration.ConfigSection" /> class.
/// </summary>
/// <param name="sectionName">Section name.</param>
/// <param name="lineNumber">Line number.</param>
Expand Down
2 changes: 1 addition & 1 deletion src/Entries/IConfigKeyValue.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Salaros.Config
namespace Salaros.Configuration
{
public interface IConfigKeyValue : IConfigLine
{
Expand Down
2 changes: 1 addition & 1 deletion src/Entries/IConfigLine.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Salaros.Config
namespace Salaros.Configuration
{
public interface IConfigLine
{
Expand Down
Loading

0 comments on commit 1c92ce8

Please sign in to comment.