|
3 | 3 | <PropertyGroup>
|
4 | 4 | <Authors>Biplov KC</Authors>
|
5 | 5 | <OutputType>Library</OutputType>
|
| 6 | + <Title>RabbitMQ Event Bus</Title> |
6 | 7 | <PackageId>Biplov.EventBus.RabbitMQ</PackageId>
|
7 | 8 | <PackageProjectUrl>https://github.com/biplovkc/event-bus-rabbitmq</PackageProjectUrl>
|
8 | 9 | <PackageTags>Biplov;BiplovKC;MessageBroker;EventBus;RabbitMQ</PackageTags>
|
|
12 | 13 | <Description>Event bus implementation targeting RabbitMQ.</Description>
|
13 | 14 | <LangVersion>latest</LangVersion>
|
14 | 15 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
15 |
| - </PropertyGroup> |
| 16 | + <DebugSymbols>true</DebugSymbols> |
| 17 | + <IncludeSymbols>true</IncludeSymbols> |
| 18 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 19 | + <!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) --> |
| 20 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 21 | + |
| 22 | + <!-- Embed source files that are not tracked by the source control manager in the PDB --> |
| 23 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
16 | 24 |
|
| 25 | + <!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) --> |
| 26 | + <DebugType>embedded</DebugType> |
| 27 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 28 | + </PropertyGroup> |
| 29 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 30 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 31 | + </PropertyGroup> |
| 32 | + <ItemGroup> |
| 33 | + <None Include="../README.md" Pack="true" PackagePath="."/> |
| 34 | + </ItemGroup> |
17 | 35 | <ItemGroup>
|
| 36 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> |
18 | 37 | <PackageReference Include="Biplov.EventBus" Version="0.1.4" />
|
19 | 38 | <PackageReference Include="Polly" Version="7.2.3" />
|
20 | 39 | <PackageReference Include="RabbitMQ.Client" Version="6.4.0" />
|
|
0 commit comments