Updated the target framework from .NET 8 to .NET 9 for future compatibility and language improvements. Adjusted null handling in `WorkflowDefinitionImporter` for better readability and correctness. Added a cancellation token to `ReadToEndAsync` for improved async operation control.
16 lines
629 B
XML
16 lines
629 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<NoWarn>$(NoWarn);CS0162;CS1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ConfigureAwait.Fody" PrivateAssets="All"/>
|
|
<PackageReference Include="Fody" PrivateAssets="All"/>
|
|
<PackageReference Include="JetBrains.Annotations" PrivateAssets="All"/>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All"/>
|
|
</ItemGroup>
|
|
</Project> |