Skip to content

Commit

Permalink
Merge pull request #1365 from Particular/shared-sql (#1368)
Browse files Browse the repository at this point in the history
Added shared dll to be a part of the nuget package
  • Loading branch information
poornimanayar authored Jun 14, 2024
1 parent b8d601a commit 02f956a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

<ItemGroup>
<ProjectReference Include="..\NServiceBus.Transport.SqlServer\NServiceBus.Transport.SqlServer.csproj" />
<ProjectReference Include="..\NServiceBus.Transport.Sql.Shared\NServiceBus.Transport.Sql.Shared.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
using NUnit.Framework;
using Sql.Shared.Queuing;


class When_configured_to_purge_expired_messages_at_startup : NServiceBusAcceptanceTest
{
SqlServerConstants sqlConstants = new();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

<ItemGroup>
<ProjectReference Include="..\NServiceBus.Transport.SqlServer\NServiceBus.Transport.SqlServer.csproj" />
<ProjectReference Include="..\NServiceBus.Transport.Sql.Shared\NServiceBus.Transport.Sql.Shared.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\NServiceBus.Transport.Sql.Shared\NServiceBus.Transport.Sql.Shared.csproj" />
<ProjectReference Include="..\NServiceBus.Transport.Sql.Shared\NServiceBus.Transport.Sql.Shared.csproj">
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<IncludeAssets>NServiceBus.Transport.Sql.Shared.dll</IncludeAssets>
</ProjectReference>
</ItemGroup>

</Project>

0 comments on commit 02f956a

Please sign in to comment.