-
Notifications
You must be signed in to change notification settings - Fork 2
/
Milvasoft.Messaging.csproj
56 lines (43 loc) · 1.78 KB
/
Milvasoft.Messaging.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
<Folder Include="RabbitMq\Events\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MassTransit.RabbitMQ" Version="8.1.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Milvasoft.Messaging.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\milvalogo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Resources\milvalogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<PropertyGroup>
<PackageId>Milvasoft.Messaging</PackageId>
<RepositoryUrl>https://github.com/Milvasoft/Milvasoft.Messaging</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/Milvasoft/Milvasoft.Messaging</PackageProjectUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Milvasoft Corporation</Authors>
<Product>Milvasoft.Messaging</Product>
<Description>Provides message broker and service bus operations.</Description>
<PackageTags>messaging,rabbitmq,masstransit,messagebroker,servicebus</PackageTags>
<Copyright>Milvasoft Yazılım Bilişim Araştırma Geliştirme Danışmanlık Sanayi ve Ticaret Ltd.Şti.</Copyright>
<Version>8.0.0</Version>
<PackageIcon>milvalogo.png</PackageIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>..\Milvasoft.Messaging\Milvasoft.Messaging.xml</DocumentationFile>
</PropertyGroup>
</Project>