* Simplify test setup by removing `Input` wrapper and fix trimming warnings with `UnconditionalSuppressMessage` annotations. * Add trimming warning suppression to `ArgumentJsonConverter` with `UnconditionalSuppressMessage` - Annotated `Read` method to suppress `IL2055` warning caused by dynamic type resolution. - Provided justification reflecting dynamic type registration in the well-known type registry. * Add root namespace to project file and suppress EF Core usage warning - Added `RootNamespace` property to `Elsa.Persistence.EFCore.Common.csproj` for consistency. - Annotated `DbSchemaAwareMigrationAssembly` with `SuppressMessage` to suppress EF1001 usage warning and provide justification. * Suppress obsolete API warnings in workflow runtime projects - Added `#pragma warning disable CS0618` to suppress obsolete member warnings in `ObsoleteWorkflowRuntime.cs`, `LocalWorkflowRuntime.Obsolete.cs`, and `DistributedWorkflowRuntime.Obsolete.cs`. - Updated `Directory.Build.props` to globally suppress `CS0618` for backward compatibility during migration. * Annotate properties with non-nullable default initializers across modules to enforce null safety. * Add `Priority` and `Deprecated` properties to `StorageDriverDescriptor` model * Update src/modules/Elsa.Workflows.Runtime.Distributed/Services/DistributedWorkflowRuntime.Obsolete.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update src/modules/Elsa.Workflows.Runtime/Services/ObsoleteWorkflowRuntime.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update src/modules/Elsa.Workflows.Runtime/Services/LocalWorkflowRuntime.Obsolete.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Clean up XML comments and improve consistency across modules. --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
41 lines
1.7 KiB
XML
41 lines
1.7 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<Authors>Elsa Workflows Community</Authors>
|
|
<Copyright>2025</Copyright>
|
|
|
|
<PackageProjectUrl>https://github.com/elsa-workflows/elsa-core</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/elsa-workflows/elsa-core</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
|
|
<!-- For NuGet browsers that currently don't support <PackageIcon> yet -->
|
|
<PackageIconUrl>https://v3.elsaworkflows.io/nuget-icon.png</PackageIconUrl>
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<AnalysisModeDocumentation>Default</AnalysisModeDocumentation>
|
|
<AnalysisLevelDocumentation>latest</AnalysisLevelDocumentation>
|
|
|
|
<NuGetAudit>enable</NuGetAudit>
|
|
<NuGetAuditMode>all</NuGetAuditMode>
|
|
|
|
<!-- https://github.com/dotnet/sourcelink -->
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<NoWarn>$(NoWarn);CS0162;CS1591</NoWarn>
|
|
<!-- Obsolete API warnings - Suppressed for backward compatibility during migration period -->
|
|
<NoWarn>$(NoWarn);CS0618</NoWarn>
|
|
<!-- IL trimming warnings -->
|
|
<NoWarn>$(NoWarn);IL2026;IL2046;IL2057;IL2067;IL2070;IL2072;IL2075;IL2087;IL2091;IL2111</NoWarn>
|
|
</PropertyGroup>
|
|
</Project> |