* Upgrade all projects to .NET6.0 * Add compatibility NET5.0 * Add compatibility NET Core 3.1 * Update appveyor.yml * Update packages * Update src/activities/Elsa.Activities.Http/Elsa.Activities.Http.csproj Remove common Authorization package * Update src/activities/Elsa.Activities.Http/Elsa.Activities.Http.csproj reimplement fix for #1568 * reimplement fix for #1611 * add missing .netcoreapp3.1 references to persistence packages * fix Jint reference * change samples and tests to target .NET 6 * cleanup multi-targeting conditions in samples/tests * revert Elsa and Elsa.Temporal.Common to .netstandard2.1 only * Update docker files to use net6.0 SDK * Fix docker poor performance on arm64 * Update Elsa.sln * Update Elsa.Activities.RabbitMq.csproj Co-authored-by: Sipke Schoorstra <sipkeschoorstra@outlook.com> Co-authored-by: Mohamed Ali <antivirus.cs@gmail.com>
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<LangVersion>latest</LangVersion>
|
|
<Authors>Elsa Contributors</Authors>
|
|
<Copyright>2021</Copyright>
|
|
<PackageProjectUrl>https://github.com/elsa-workflows/elsa-core</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/elsa-workflows/elsa-core</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<Nullable>enable</Nullable>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageIconUrl>https://elsa-workflows.github.io/elsa-core/img/android-icon-192x192.png</PackageIconUrl>
|
|
|
|
<!--<GenerateDocumentationFile>true</GenerateDocumentationFile> -->
|
|
|
|
<!-- https://github.com/dotnet/sourcelink -->
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
</Project> |