-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathSlimMessageBus.Host.Configuration.csproj
More file actions
43 lines (39 loc) · 1.51 KB
/
Copy pathSlimMessageBus.Host.Configuration.csproj
File metadata and controls
43 lines (39 loc) · 1.51 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../Common.NuGet.Properties.xml" />
<PropertyGroup>
<Description>Core configuration interfaces of SlimMessageBus</Description>
<PackageTags>SlimMessageBus</PackageTags>
<RootNamespace>SlimMessageBus.Host</RootNamespace>
<Version>3.5.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference
Include="Microsoft.Extensions.DependencyInjection.Abstractions"
Version="3.1.0"
Condition="'$(TargetFramework)' == 'netstandard2.0'"
/>
<PackageReference
Include="Microsoft.Extensions.DependencyInjection.Abstractions"
Version="6.0.0"
Condition="'$(TargetFramework)' == 'net6.0'"
/>
<PackageReference
Include="Microsoft.Extensions.DependencyInjection.Abstractions"
Version="8.0.2"
Condition="'$(TargetFramework)' == 'net8.0'"
/>
<PackageReference
Include="Microsoft.Extensions.DependencyInjection.Abstractions"
Version="10.0.9"
Condition="'$(TargetFramework)' == 'net10.0'"
/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SlimMessageBus.Host.Interceptor\SlimMessageBus.Host.Interceptor.csproj" />
<ProjectReference Include="..\SlimMessageBus.Host.Serialization\SlimMessageBus.Host.Serialization.csproj" />
<ProjectReference Include="..\SlimMessageBus\SlimMessageBus.csproj" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="SlimMessageBus.Host.Configuration.Test" />
</ItemGroup>
</Project>