Skip to content

Commit

Permalink
Lower the netstandard to lowest supported .net (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-quix authored May 30, 2024
1 parent 9f2dc31 commit 9801511
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions builds/csharp/nuget/build_nugets.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
import fileinput
from typing import List

version = "0.7.2.0"
informal_version = "0.7.2.0"
nuget_version = "0.7.2.0"
version = "0.7.3.0"
informal_version = "0.7.3.0-dev1"
nuget_version = "0.7.3.0-dev1"


def updatecsproj(projfilepath):
Expand Down
4 changes: 2 additions & 2 deletions src/QuixStreams.Kafka/QuixStreams.Kafka.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'net8.0' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions src/QuixStreams.State/QuixStreams.State.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
<PackageReference Include="RocksDB" Version="8.3.2.39829" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'net8.0' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
</ItemGroup>

Expand Down

0 comments on commit 9801511

Please sign in to comment.