This repository was archived by the owner on May 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
src/ServiceLibrary.ConsoleApp Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 23
23
run : dotnet build ./src --configuration Release --no-restore
24
24
25
25
- 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
27
27
28
28
- name : Push with dotnet
29
29
run : dotnet nuget push nuget-packages/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
Original file line number Diff line number Diff line change
1
+ using ConsoleApplicationServiceLibrary . Providers ;
2
+ using Microsoft . Extensions . DependencyInjection ;
3
+ using System ;
4
+ using System . Collections . Generic ;
5
+ using System . Text ;
6
+
1
7
namespace ServiceLibrary . ConsoleApp . Controllers
2
8
{
3
9
public abstract class BaseController
Original file line number Diff line number Diff line change
1
+ using ConsoleApplicationServiceLibrary . Providers ;
2
+ using Microsoft . Extensions . DependencyInjection ;
3
+ using System ;
4
+ using System . Collections . Generic ;
5
+ using System . Text ;
6
+
1
7
namespace ServiceLibrary . ConsoleApp . Services
2
8
{
3
9
public abstract class BaseService
You can’t perform that action at this time.
0 commit comments