Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.

Commit f637201

Browse files
committed
Aggiornato progetto
1 parent b534492 commit f637201

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
# NET6 Custom Library
1+
# NET6 Custom Library
2+
3+
## RabbitMQ
4+
5+
TODO
Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
1-

1+
global using Microsoft.Extensions.DependencyInjection;
2+
global using Microsoft.Extensions.Hosting;
3+
global using Microsoft.Extensions.Logging;
4+
global using NET6CustomLibrary.RabbitMQ.Abstractions;
5+
global using RabbitMQ.Client;
6+
global using RabbitMQ.Client.Events;
7+
global using System;
8+
global using System.Collections.Generic;
9+
global using System.Linq;
10+
global using System.Text;
11+
global using System.Text.Json;
12+
global using System.Text.Json.Serialization;
13+
global using System.Threading;
14+
global using System.Threading.Tasks;

src/NET6CustomLibrary/NET6CustomLibrary.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,18 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
19+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
20+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.3" />
1821
<PackageReference Include="Nerdbank.GitVersioning" Version="3.5.119">
1922
<PrivateAssets>all</PrivateAssets>
2023
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2124
</PackageReference>
25+
<PackageReference Include="RabbitMQ.Client" Version="6.4.0" />
26+
</ItemGroup>
27+
28+
<ItemGroup>
29+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
2230
</ItemGroup>
2331

2432
</Project>

0 commit comments

Comments
 (0)