Skip to content

Commit da4a264

Browse files
authored
feat: Support the LaunchDarkly for .NET Server-Side 8.x SDK. (#22)
1 parent 0d71fd1 commit da4a264

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/LaunchDarkly.OpenFeature.ServerProvider/LaunchDarkly.OpenFeature.ServerProvider.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232
<!-- fail if XML comments are missing or invalid -->
3333
<WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors>
3434
</PropertyGroup>
35-
35+
3636
<ItemGroup Condition="'$(Configuration)'!='Release'">
3737
<InternalsVisibleTo Include="LaunchDarkly.OpenFeature.ServerProvider.Tests" />
3838
</ItemGroup>
3939

4040
<ItemGroup>
41-
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[7.0,8.0)" />
41+
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[7.0,9.0)" />
4242
<PackageReference Include="OpenFeature" Version="[1.0.0, 2.0.0)" />
4343
</ItemGroup>
4444

test/LaunchDarkly.OpenFeature.ServerProvider.Tests/LaunchDarkly.OpenFeature.ServerProvider.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
single framework that we are testing; this allows us to test with older SDK
66
versions that would error out if they saw any newer target frameworks listed
77
here, even if we weren't running those.
8-
8+
99
Tests need to run against a specific platform implementation. netstandard2.0 is
1010
an API, and not a platform, so it is not included in this list.
1111
Additional information: https://xunit.net/docs/why-no-netstandard
12-
12+
1313
-->
1414
<BuildFrameworks Condition="'$(BUILDFRAMEWORKS)' == ''">net471;net6.0</BuildFrameworks>
1515
<TargetFrameworks>$(BUILDFRAMEWORKS)</TargetFrameworks>
@@ -29,7 +29,7 @@
2929
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3030
<PrivateAssets>all</PrivateAssets>
3131
</PackageReference>
32-
<PackageReference Include="LaunchDarkly.ServerSdk" Version="7.0.0" />
32+
<PackageReference Include="LaunchDarkly.ServerSdk" Version="8.0.0" />
3333
<PackageReference Include="LaunchDarkly.TestHelpers" Version="2.0.0" />
3434
<PackageReference Include="Moq" Version="4.8.1" />
3535
<PackageReference Include="OpenFeature" Version="1.*" />

0 commit comments

Comments
 (0)