* Upgrade projects to target .NET 10, add conditional `System.Linq.Async` dependencies for compatibility with earlier frameworks, and update project files for consistency across the solution. * Suppress null comparison warning in `WorkflowDefinitionStore` and remove xUnit references from performance test project. * Refactor performance test projects to remove xUnit references and update MSBuild properties for BenchmarkDotNet.
17 lines
667 B
XML
17 lines
667 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<IsPackable>false</IsPackable>
|
|
<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> |