Skip to content

Commit

Permalink
renamed related namespaces according to #24
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelschnyder committed Apr 25, 2017
1 parent e00a65b commit fd936f8
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@

#pragma warning disable 1591

namespace Jobbr.ConsoleApp.Runtime.Logging
namespace Jobbr.Runtime.ForkedExecution.Logging
{
using System.Collections.Generic;
using Jobbr.ConsoleApp.Runtime.Logging.LogProviders;
using Jobbr.Runtime.ForkedExecution.Logging.LogProviders;
using System;
using System.Diagnostics;

Expand Down Expand Up @@ -519,7 +519,7 @@ public bool Log(LogLevel logLevel, Func<string> messageFunc, Exception exception
}
}

namespace Jobbr.ConsoleApp.Runtime.Logging.LogProviders
namespace Jobbr.Runtime.ForkedExecution.Logging.LogProviders
{
using System;
using System.Collections.Generic;
Expand Down
2 changes: 1 addition & 1 deletion source/Jobbr.Runtime.ForkedExecution/CommandlineOptions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using CommandLine;

namespace Jobbr.Runtime.Console
namespace Jobbr.Runtime.ForkedExecution
{
/// <summary>
/// The options.
Expand Down
2 changes: 1 addition & 1 deletion source/Jobbr.Runtime.ForkedExecution/JobRunState.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Jobbr.Runtime.Console
namespace Jobbr.Runtime.ForkedExecution
{
public enum JobRunState
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{446271F7-7880-4C71-8871-2082FB90CE86}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Jobbr.Runtime.Console</RootNamespace>
<AssemblyName>Jobbr.Runtime.Console</AssemblyName>
<RootNamespace>Jobbr.Runtime.ForkedExecution</RootNamespace>
<AssemblyName>Jobbr.Runtime.ForkedExecution</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
Expand Down
6 changes: 3 additions & 3 deletions source/Jobbr.Runtime.ForkedExecution/JobbrRuntime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
using System.Threading;
using System.Threading.Tasks;
using CommandLine;
using Jobbr.ConsoleApp.Runtime.Logging;
using Jobbr.Runtime.Console.RestClient;
using Jobbr.Runtime.Core;
using Jobbr.Runtime.ForkedExecution.Logging;
using Jobbr.Runtime.ForkedExecution.RestClient;

namespace Jobbr.Runtime.Console
namespace Jobbr.Runtime.ForkedExecution
{
public class JobbrRuntime
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Jobbr.ConsoleApp.Runtime")]
[assembly: AssemblyTitle("Jobbr.Runtime.ForkedExecution")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Jobbr.ConsoleApp.Runtime")]
[assembly: AssemblyProduct("Jobbr.Runtime.ForkedExecution")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
using System.Net;
using System.Net.Http;
using System.Text;
using Jobbr.Runtime.Core;
using Newtonsoft.Json;

namespace Jobbr.Runtime.Console.RestClient
namespace Jobbr.Runtime.ForkedExecution.RestClient
{
/// <summary>
/// The jobbr run time client.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Jobbr.Runtime.Console.RestClient
namespace Jobbr.Runtime.ForkedExecution.RestClient
{
/// <summary>
/// The job run configuration.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Jobbr.Runtime.Console.RestClient
namespace Jobbr.Runtime.ForkedExecution.RestClient
{
public class JobRunUpdateDto
{
Expand Down
2 changes: 1 addition & 1 deletion source/Jobbr.Server.ForkedExecution.TestRunner/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;
using Jobbr.Runtime.Console;
using Jobbr.Runtime.Core;
using Jobbr.Runtime.ForkedExecution;

namespace Jobbr.Server.ForkedExecution.TestRunner
{
Expand Down

0 comments on commit fd936f8

Please sign in to comment.