* Extract dashboard contributors into modules * Install dashboard widgets by default * Enable dashboard features in modular server config
23 lines
800 B
XML
23 lines
800 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>
|
|
Provides live raw console log streaming for Elsa hosts.
|
|
</Description>
|
|
<PackageTags>elsa module diagnostics console-logs stdout stderr signalr operations</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CShells" />
|
|
<PackageReference Include="ConsoleLogStreaming.Core" />
|
|
<PackageReference Include="ConsoleLogStreaming.SignalR" />
|
|
<PackageReference Include="Microsoft.Extensions.Options" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\common\Elsa.Api.Common\Elsa.Api.Common.csproj" />
|
|
<ProjectReference Include="..\Elsa.Workflows.Core\Elsa.Workflows.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|