-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathNetCoreKit.Infrastructure.Bus.csproj
28 lines (23 loc) · 1.16 KB
/
NetCoreKit.Infrastructure.Bus.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\build\packages.props" />
<PropertyGroup>
<id>NetCoreKit.Infrastructure.Bus</id>
<version>0.0.0</version>
<AssemblyName>NetCoreKit.Infrastructure.Bus</AssemblyName>
<RootNamespace>NetCoreKit.Infrastructure.Bus</RootNamespace>
<Title>The bus infrastructure library for Cloud Native .NET Core Kit.</Title>
<Description>Supports a very abstraction of the in-memory and utilities for working with the bus.</Description>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" />
<PackageReference Include="System.Reactive" Version="4.2.0-preview.63" />
<PackageReference Include="MediatR" Version="6.0.0" />
<PackageReference Include="Google.Protobuf" Version="3.15.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NetCoreKit.Domain\NetCoreKit.Domain.csproj" />
<ProjectReference Include="..\NetCoreKit.Infrastructure\NetCoreKit.Infrastructure.csproj" />
</ItemGroup>
</Project>