Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit 01af885

Browse files
author
Tommaso Stocchi
authored
Merge pull request #8 from tommasodotNET:develop
Merge pull request #7 from tommasodotNET:release/2.0.3
2 parents ede3279 + 71301bd commit 01af885

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.github/workflows/Publish NuGet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: dotnet build ./src --configuration Release --no-restore
2424

2525
- name: Pack with dotnet
26-
run: dotnet pack ./src/ServiceLibrary.ConsoleApp/ServiceLibrary.ConsoleApp.csproj --output nuget-packages --configuration Release -p:PackageVersion=2.0.2
26+
run: dotnet pack ./src/ServiceLibrary.ConsoleApp/ServiceLibrary.ConsoleApp.csproj --output nuget-packages --configuration Release -p:PackageVersion=2.0.3
2727

2828
- name: Push with dotnet
2929
run: dotnet nuget push nuget-packages/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

src/ServiceLibrary.ConsoleApp/Controllers/BaseController.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
using ConsoleApplicationServiceLibrary.Providers;
2+
using Microsoft.Extensions.DependencyInjection;
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Text;
6+
17
namespace ServiceLibrary.ConsoleApp.Controllers
28
{
39
public abstract class BaseController

src/ServiceLibrary.ConsoleApp/Services/BaseService.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
using ConsoleApplicationServiceLibrary.Providers;
2+
using Microsoft.Extensions.DependencyInjection;
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Text;
6+
17
namespace ServiceLibrary.ConsoleApp.Services
28
{
39
public abstract class BaseService

0 commit comments

Comments
 (0)