* Fix sample Elsa.Samples.FileBasedWorkflow * Centralize project properties * Fix PackageLicenseExpression * Added configureawait.props & FodyWeavers.xml & FodyWeavers.xsd. * Remove icon.png and added PackageIconUrl * Removed <Nullable>disable</Nullable> * Fix Icon in Elsa.Activities.MassTransit and Rebuild Co-authored-by: Rafael Carnucci <rafael.carnucci@icn.de>
25 lines
857 B
XML
25 lines
857 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\..\common.props" />
|
|
<Import Project="..\..\..\configureawait.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Authors>Elsa Contributors</Authors>
|
|
<Description>
|
|
Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application.
|
|
This package provides a JavaScript expression evaluator based on Jint.
|
|
</Description>
|
|
<PackageTags>elsa, workflows, javascript, jint</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Jint" Version="3.0.0-beta-1914" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\core\Elsa.Core\Elsa.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|