* Rename module and features * Move Mediator, AspNetCore and Expressions to modules folder * Update labels-widget.tsx
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.7.0" />
|
|
<PackageReference Include="Microsoft.Azure.Management.ServiceBus.Fluent" Version="1.38.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
|
|
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\common\Elsa.Formatting\Elsa.Formatting.csproj" />
|
|
<ProjectReference Include="..\Elsa.Mediator\Elsa.Mediator.csproj" />
|
|
<ProjectReference Include="..\Elsa.Workflows.Core\Elsa.Workflows.Core.csproj" />
|
|
<ProjectReference Include="..\Elsa.Workflows.Persistence\Elsa.Workflows.Persistence.csproj" />
|
|
<ProjectReference Include="..\Elsa.Workflows.Runtime\Elsa.Workflows.Runtime.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|