* Refactor workflow invoker to execute in finite scope * Fix Timer Event and workflow instance concurrency issue
18 lines
579 B
XML
18 lines
579 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\activities\Elsa.Activities.Http\Elsa.Activities.Http.csproj" />
|
|
<ProjectReference Include="..\..\src\core\Elsa.Core\Elsa.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|