Skip to content

Commit e908659

Browse files
committed
MicroBatchFramework -> ConsoleAppFramework
1 parent 1ab3137 commit e908659

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+68
-68
lines changed

.circleci/config.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ jobs:
1919
- checkout
2020
- run: dotnet build -c Release -p:Version=${CIRCLE_TAG}
2121
- run: dotnet test -c Release --no-build
22-
- run: dotnet pack ./src/MicroBatchFramework/MicroBatchFramework.csproj -c Release --no-build -p:Version=${CIRCLE_TAG}
23-
- run: dotnet pack ./src/MicroBatchFramework.WebHosting/MicroBatchFramework.WebHosting.csproj -c Release --no-build -p:Version=${CIRCLE_TAG}
22+
- run: dotnet pack ./src/ConsoleAppFramework/ConsoleAppFramework.csproj -c Release --no-build -p:Version=${CIRCLE_TAG}
23+
- run: dotnet pack ./src/ConsoleAppFramework.WebHosting/ConsoleAppFramework.WebHosting.csproj -c Release --no-build -p:Version=${CIRCLE_TAG}
2424
- store_artifacts:
25-
path: ./src/MicroBatchFramework/bin/Release
26-
destination: ./MicroBatchFramework/
25+
path: ./src/ConsoleAppFramework/bin/Release
26+
destination: ./ConsoleAppFramework/
2727
- store_artifacts:
28-
path: ./src/MicroBatchFramework.WebHosting/bin/Release
29-
destination: ./MicroBatchFramework.WebHosting/
30-
- run: dotnet nuget push ./src/MicroBatchFramework/bin/Release/MicroBatchFramework.${CIRCLE_TAG}.nupkg -s https://www.nuget.org/api/v2/package -k ${NUGET_KEY}
31-
- run: dotnet nuget push ./src/MicroBatchFramework.WebHosting/bin/Release/MicroBatchFramework.WebHosting.${CIRCLE_TAG}.nupkg -s https://www.nuget.org/api/v2/package -k ${NUGET_KEY}
28+
path: ./src/ConsoleAppFramework.WebHosting/bin/Release
29+
destination: ./ConsoleAppFramework.WebHosting/
30+
- run: dotnet nuget push ./src/ConsoleAppFramework/bin/Release/ConsoleAppFramework.${CIRCLE_TAG}.nupkg -s https://www.nuget.org/api/v2/package -k ${NUGET_KEY}
31+
- run: dotnet nuget push ./src/ConsoleAppFramework.WebHosting/bin/Release/ConsoleAppFramework.WebHosting.${CIRCLE_TAG}.nupkg -s https://www.nuget.org/api/v2/package -k ${NUGET_KEY}
3232
workflows:
3333
version: 2
3434
build-and-push:

MicroBatchFramework.sln ConsoleAppFramework.sln

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VisualStudioVersion = 15.0.28307.168
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{1F399F98-7439-4F05-847B-CC1267B4B7F2}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MicroBatchFramework", "src\MicroBatchFramework\MicroBatchFramework.csproj", "{AEBCDB61-F8FA-40EB-B6D9-636D112BC390}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConsoleAppFramework", "src\ConsoleAppFramework\ConsoleAppFramework.csproj", "{AEBCDB61-F8FA-40EB-B6D9-636D112BC390}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sandbox", "sandbox", "{A2CF2984-E8E2-48FC-B5A1-58D74A2467E6}"
1111
EndProject
@@ -17,14 +17,14 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SingleContainedAppWithConfi
1717
EndProject
1818
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{AAD2D900-C305-4449-A9FC-6C7696FFEDFA}"
1919
EndProject
20-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MicroBatchFramework.Tests", "tests\MicroBatchFramework.Tests\MicroBatchFramework.Tests.csproj", "{AF15C841-5D45-4E61-BFCE-A6E6B7BA7629}"
20+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConsoleAppFramework.Tests", "tests\ConsoleAppFramework.Tests\ConsoleAppFramework.Tests.csproj", "{AF15C841-5D45-4E61-BFCE-A6E6B7BA7629}"
2121
EndProject
2222
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".circleci", ".circleci", "{E98E6C20-D6CD-4C6D-9FC4-1070BFFB70F9}"
2323
ProjectSection(SolutionItems) = preProject
2424
.circleci\config.yml = .circleci\config.yml
2525
EndProjectSection
2626
EndProject
27-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MicroBatchFramework.WebHosting", "src\MicroBatchFramework.WebHosting\MicroBatchFramework.WebHosting.csproj", "{9AC1CAE2-E717-472A-BBFB-0FE5590E5C7A}"
27+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleAppFramework.WebHosting", "src\ConsoleAppFramework.WebHosting\ConsoleAppFramework.WebHosting.csproj", "{9AC1CAE2-E717-472A-BBFB-0FE5590E5C7A}"
2828
EndProject
2929
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebHostingApp", "sandbox\WebHostingApp\WebHostingApp.csproj", "{2B7CDEFC-3D92-4B72-8898-2494D7B087AD}"
3030
EndProject

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Cysharp, Inc.
3+
Copyright (c) 2020 Cysharp, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

sandbox/MultiContainedApp/MultiContainedApp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<ProjectReference Include="..\..\src\MicroBatchFramework\MicroBatchFramework.csproj" />
10+
<ProjectReference Include="..\..\src\ConsoleAppFramework\ConsoleAppFramework.csproj" />
1111
</ItemGroup>
1212

1313
</Project>

sandbox/MultiContainedApp/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MicroBatchFramework;
1+
using ConsoleAppFramework;
22
using Microsoft.Extensions.Hosting;
33
using Microsoft.Extensions.Logging;
44
using System;

sandbox/SingleContainedApp/Program.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using MicroBatchFramework;
2-
using MicroBatchFramework.Logging;
1+
using ConsoleAppFramework;
2+
using ConsoleAppFramework.Logging;
33
using Microsoft.Extensions.Configuration;
44
using Microsoft.Extensions.DependencyInjection;
55
using Microsoft.Extensions.Hosting;

sandbox/SingleContainedApp/SingleContainedApp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<ProjectReference Include="..\..\src\MicroBatchFramework\MicroBatchFramework.csproj" />
20+
<ProjectReference Include="..\..\src\ConsoleAppFramework\ConsoleAppFramework.csproj" />
2121
</ItemGroup>
2222

2323
</Project>

sandbox/SingleContainedAppWithConfig/Program.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MicroBatchFramework;
1+
using ConsoleAppFramework;
22
using Microsoft.Extensions.DependencyInjection;
33
using Microsoft.Extensions.Logging;
44
using Microsoft.Extensions.Options;
@@ -35,8 +35,8 @@ class Program
3535
{
3636
static async Task Main(string[] args)
3737
{
38-
// using MicroBatchFramework.Configuration;
39-
await MicroBatchFramework.BatchHost.CreateDefaultBuilder()
38+
// using ConsoleAppFramework.Configuration;
39+
await ConsoleAppFramework.BatchHost.CreateDefaultBuilder()
4040
.ConfigureServices((hostContext, services) =>
4141
{
4242
services.AddOptions();

sandbox/SingleContainedAppWithConfig/SingleContainedAppWithConfig.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<ProjectReference Include="..\..\src\MicroBatchFramework\MicroBatchFramework.csproj" />
32+
<ProjectReference Include="..\..\src\ConsoleAppFramework\ConsoleAppFramework.csproj" />
3333
</ItemGroup>
3434

3535
</Project>

sandbox/SingleContainedAppWithConfig/appsettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"EnvValue": "ENV VALUE!!!!"
55
},
66
"Logging": {
7-
"MicroBatchFramework.Logging.SimpleConsoleLoggerProvider": {
7+
"ConsoleAppFramework.Logging.SimpleConsoleLoggerProvider": {
88
"LogLevel": {
99
"Default": "Trace",
1010
"System": "Information",

sandbox/WebHostingApp/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.AspNetCore.Hosting;
22
using System.Linq;
33
using Microsoft.Extensions.Logging;
4-
using MicroBatchFramework;
4+
using ConsoleAppFramework;
55
using System;
66
using System.Threading.Tasks;
77

sandbox/WebHostingApp/WebHostingApp.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<ProjectReference Include="..\..\src\MicroBatchFramework.WebHosting\MicroBatchFramework.WebHosting.csproj" />
11-
<ProjectReference Include="..\..\src\MicroBatchFramework\MicroBatchFramework.csproj" />
10+
<ProjectReference Include="..\..\src\ConsoleAppFramework.WebHosting\ConsoleAppFramework.WebHosting.csproj" />
11+
<ProjectReference Include="..\..\src\ConsoleAppFramework\ConsoleAppFramework.csproj" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

src/MicroBatchFramework.WebHosting/BatchEngineHostingExtensions.cs src/ConsoleAppFramework.WebHosting/BatchEngineHostingExtensions.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using MicroBatchFramework.WebHosting;
2-
using MicroBatchFramework.WebHosting.Swagger;
1+
using ConsoleAppFramework.WebHosting;
2+
using ConsoleAppFramework.WebHosting.Swagger;
33
using Microsoft.AspNetCore.Builder;
44
using Microsoft.AspNetCore.Hosting;
55
using Microsoft.Extensions.DependencyInjection;
@@ -11,7 +11,7 @@
1111
using System.Reflection;
1212
using System.Threading.Tasks;
1313

14-
namespace MicroBatchFramework // .WebHosting
14+
namespace ConsoleAppFramework // .WebHosting
1515
{
1616
public static class BatchEngineHostingExtensions
1717
{
@@ -91,7 +91,7 @@ public void Configure(IApplicationBuilder app, IHostApplicationLifetime lifetime
9191
catch { }
9292
});
9393

94-
var swaggerOption = app.ApplicationServices.GetService<SwaggerOptions>() ?? new SwaggerOptions("MicroBatchFramework", "", "/");
94+
var swaggerOption = app.ApplicationServices.GetService<SwaggerOptions>() ?? new SwaggerOptions("ConsoleAppFramework", "", "/");
9595
app.UseBatchEngineSwaggerMiddleware(swaggerOption);
9696
app.UseBatchEngineMiddleware();
9797
}

src/MicroBatchFramework.WebHosting/BatchEngineMiddleware.cs src/ConsoleAppFramework.WebHosting/BatchEngineMiddleware.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Text;
88
using System.Threading.Tasks;
99

10-
namespace MicroBatchFramework.WebHosting
10+
namespace ConsoleAppFramework.WebHosting
1111
{
1212
internal class WebHostingInterceptor : IBatchInterceptor
1313
{

src/MicroBatchFramework.WebHosting/BatchEngineSwaggerMiddleware.cs src/ConsoleAppFramework.WebHosting/BatchEngineSwaggerMiddleware.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using MicroBatchFramework.WebHosting.Swagger;
1+
using ConsoleAppFramework.WebHosting.Swagger;
22
using Microsoft.AspNetCore.Http;
33
using System.IO;
44
using System.Linq;
55
using System.Reflection;
66
using System.Threading.Tasks;
77

8-
namespace MicroBatchFramework.WebHosting
8+
namespace ConsoleAppFramework.WebHosting
99
{
1010
public class BatchEngineSwaggerMiddleware
1111
{
@@ -25,7 +25,7 @@ public BatchEngineSwaggerMiddleware(RequestDelegate next, TargetBatchTypeCollect
2525
public async Task Invoke(HttpContext httpContext)
2626
{
2727
// reference embedded resouces
28-
const string prefix = "MicroBatchFramework.WebHosting.Swagger.SwaggerUI.";
28+
const string prefix = "ConsoleAppFramework.WebHosting.Swagger.SwaggerUI.";
2929

3030
var path = httpContext.Request.Path.Value.Trim('/');
3131
if (path == "") path = "index.html";

src/MicroBatchFramework.WebHosting/MicroBatchFramework.WebHosting.csproj src/ConsoleAppFramework.WebHosting/ConsoleAppFramework.WebHosting.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</ItemGroup>
2020

2121
<ItemGroup>
22-
<ProjectReference Include="..\MicroBatchFramework\MicroBatchFramework.csproj" />
22+
<ProjectReference Include="..\ConsoleAppFramework\ConsoleAppFramework.csproj" />
2323
</ItemGroup>
2424

2525
</Project>

src/MicroBatchFramework.WebHosting/Swagger/Schemas/SwaggerDocument.cs src/ConsoleAppFramework.WebHosting/Swagger/Schemas/SwaggerDocument.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Collections.Generic;
44
using System.Text.Json.Serialization;
55

6-
namespace MicroBatchFramework.WebHosting.Swagger.Schemas
6+
namespace ConsoleAppFramework.WebHosting.Swagger.Schemas
77
{
88
public class SwaggerDocument
99
{

src/MicroBatchFramework.WebHosting/Swagger/SwaggerDefinitionBuilder.cs src/ConsoleAppFramework.WebHosting/Swagger/SwaggerDefinitionBuilder.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MicroBatchFramework.WebHosting.Swagger.Schemas;
1+
using ConsoleAppFramework.WebHosting.Swagger.Schemas;
22
using Microsoft.AspNetCore.Http;
33
using System;
44
using System.Collections;
@@ -12,7 +12,7 @@
1212
using System.Text.RegularExpressions;
1313
using System.Xml.Linq;
1414

15-
namespace MicroBatchFramework.WebHosting.Swagger
15+
namespace ConsoleAppFramework.WebHosting.Swagger
1616
{
1717
public class SwaggerDefinitionBuilder
1818
{

src/MicroBatchFramework.WebHosting/Swagger/SwaggerOptions.cs src/ConsoleAppFramework.WebHosting/Swagger/SwaggerOptions.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using MicroBatchFramework.WebHosting.Swagger.Schemas;
1+
using ConsoleAppFramework.WebHosting.Swagger.Schemas;
22
using Microsoft.AspNetCore.Http;
33
using System;
44

5-
namespace MicroBatchFramework.WebHosting.Swagger
5+
namespace ConsoleAppFramework.WebHosting.Swagger
66
{
77
public class SwaggerOptions
88
{

src/MicroBatchFramework.WebHosting/Swagger/Utils.cs src/ConsoleAppFramework.WebHosting/Swagger/Utils.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Reflection;
33

4-
namespace MicroBatchFramework.WebHosting.Swagger
4+
namespace ConsoleAppFramework.WebHosting.Swagger
55
{
66
internal static class Utils
77
{

src/MicroBatchFramework.WebHosting/TargetBatchTypeCollection.cs src/ConsoleAppFramework.WebHosting/TargetBatchTypeCollection.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Collections.Generic;
44

5-
namespace MicroBatchFramework.WebHosting
5+
namespace ConsoleAppFramework.WebHosting
66
{
77
public class TargetBatchTypeCollection : IEnumerable<Type>
88
{

src/MicroBatchFramework/AssemblyInfo.cs src/ConsoleAppFramework/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Runtime.CompilerServices;
44
using System.Text;
55

6-
[assembly:InternalsVisibleTo("MicroBatchFramework.Tests, PublicKey="+
6+
[assembly:InternalsVisibleTo("ConsoleAppFramework.Tests, PublicKey="+
77
"002400000480000094000000060200000024000052534131000400000100010089b12412c27f5f"+
88
"aece3868b659bf311f2550c5cc1b4cbbe032a048ec36fa288872d51e8ddfd77a83e835c6ea3940"+
99
"c331fe89d1ba9146a12abed588f194cd437cfe81252634d49214acf6b11dc9e97cfc6d0f818082"+

src/MicroBatchFramework/BatchBase.cs src/ConsoleAppFramework/BatchBase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MicroBatchFramework
1+
namespace ConsoleAppFramework
22
{
33
public abstract class BatchBase
44
{

src/MicroBatchFramework/BatchContext.cs src/ConsoleAppFramework/BatchContext.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System;
33
using System.Threading;
44

5-
namespace MicroBatchFramework
5+
namespace ConsoleAppFramework
66
{
77
public class BatchContext
88
{

src/MicroBatchFramework/BatchEngine.cs src/ConsoleAppFramework/BatchEngine.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using System.Threading;
1010
using System.Threading.Tasks;
1111

12-
namespace MicroBatchFramework
12+
namespace ConsoleAppFramework
1313
{
1414
public class BatchEngine
1515
{

src/MicroBatchFramework/BatchEngineHostBuilderExtensions.cs src/ConsoleAppFramework/BatchEngineHostBuilderExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Reflection;
77
using System.Threading.Tasks;
88

9-
namespace MicroBatchFramework
9+
namespace ConsoleAppFramework
1010
{
1111
public static class BatchEngineHostBuilderExtensions
1212
{

src/MicroBatchFramework/BatchEngineService.cs src/ConsoleAppFramework/BatchEngineService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Threading.Tasks;
77
using Microsoft.Extensions.DependencyInjection;
88

9-
namespace MicroBatchFramework
9+
namespace ConsoleAppFramework
1010
{
1111
public sealed class BatchEngineService : IHostedService
1212
{

src/MicroBatchFramework/BatchHost.cs src/ConsoleAppFramework/BatchHost.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
using MicroBatchFramework.Logging;
1+
using ConsoleAppFramework.Logging;
22
using Microsoft.Extensions.Configuration;
33
using Microsoft.Extensions.Hosting;
44
using Microsoft.Extensions.Logging;
55
using System.Collections.Generic;
66
using System.Linq;
77
using System.Reflection;
88

9-
namespace MicroBatchFramework
9+
namespace ConsoleAppFramework
1010
{
1111
// ref: https://github.com/aspnet/AspNetCore/blob/4e44025a52e4b73aa17e09a8041b0e166e0c5ce0/src/DefaultBuilder/src/WebHost.cs
1212
/// <summary>

src/MicroBatchFramework/CommandAttribute.cs src/ConsoleAppFramework/CommandAttribute.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace MicroBatchFramework
3+
namespace ConsoleAppFramework
44
{
55
public class CommandAttribute : Attribute
66
{

src/MicroBatchFramework/CommandHelpBuilder.cs src/ConsoleAppFramework/CommandHelpBuilder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Security.Cryptography.X509Certificates;
77
using System.Text;
88

9-
namespace MicroBatchFramework
9+
namespace ConsoleAppFramework
1010
{
1111
internal class CommandHelpBuilder
1212
{

src/MicroBatchFramework/CompositeBatchInterceptor.cs src/ConsoleAppFramework/CompositeBatchInterceptor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Runtime.ExceptionServices;
66
using System.Threading.Tasks;
77

8-
namespace MicroBatchFramework
8+
namespace ConsoleAppFramework
99
{
1010
public class CompositeBatchInterceptor : IBatchInterceptor
1111
{

src/MicroBatchFramework/MicroBatchFramework.csproj src/ConsoleAppFramework/ConsoleAppFramework.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
<!--<Version>1</Version>-->
1212

1313
<!-- NuGet -->
14-
<PackageId>MicroBatchFramework</PackageId>
14+
<PackageId>ConsoleAppFramework</PackageId>
1515
<PackageVersion>$(Version)</PackageVersion>
1616
<Authors>Cysharp</Authors>
1717
<Copyright>Cysharp</Copyright>
1818
<Description>Cloud Native Batch Framework.</Description>
19-
<PackageProjectUrl>https://github.com/Cysharp/MicroBatchFramework</PackageProjectUrl>
19+
<PackageProjectUrl>https://github.com/Cysharp/ConsoleAppFramework</PackageProjectUrl>
2020
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
2121
<RepositoryType>git</RepositoryType>
2222
<PackageTags>batch</PackageTags>

src/MicroBatchFramework/EmptyHostedService.cs src/ConsoleAppFramework/EmptyHostedService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Threading;
33
using System.Threading.Tasks;
44

5-
namespace MicroBatchFramework
5+
namespace ConsoleAppFramework
66
{
77
internal class EmptyHostedService : IHostedService
88
{

src/MicroBatchFramework/IBatchInterceptor.cs src/ConsoleAppFramework/IBatchInterceptor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System;
33
using System.Threading.Tasks;
44

5-
namespace MicroBatchFramework
5+
namespace ConsoleAppFramework
66
{
77
public interface IBatchInterceptor
88
{

src/MicroBatchFramework/OptionAttribute.cs src/ConsoleAppFramework/OptionAttribute.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace MicroBatchFramework
3+
namespace ConsoleAppFramework
44
{
55
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false)]
66
public class OptionAttribute : Attribute

0 commit comments

Comments
 (0)