* Extract dashboard contributors into modules * Install dashboard widgets by default * Enable dashboard features in modular server config
28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>
|
|
Provides workflow runtime functionality.
|
|
</Description>
|
|
<PackageTags>elsa module workflows runtime</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DistributedLock.FileSystem" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
|
|
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" />
|
|
<PackageReference Include="Open.Linq.AsyncExtensions" />
|
|
<PackageReference Include="ThrottleDebounce" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Elsa.Caching\Elsa.Caching.csproj" />
|
|
<ProjectReference Include="..\Elsa.KeyValues\Elsa.KeyValues.csproj" />
|
|
<ProjectReference Include="..\Elsa.Tenants\Elsa.Tenants.csproj" />
|
|
<ProjectReference Include="..\Elsa.Workflows.Core\Elsa.Workflows.Core.csproj" />
|
|
<ProjectReference Include="..\Elsa.Workflows.Management\Elsa.Workflows.Management.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|