Skip to content

Commit b94c4bd

Browse files
authored
Merge pull request #12 from batje/dotnet10
Update to dotnet 10
2 parents 0f0456c + 9d4a20d commit b94c4bd

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

src/Etcd.Microsoft.Extensions.Configuration/Etcd.Microsoft.Extensions.Configuration.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
44
<LangVersion>latest</LangVersion>
55
<Nullable>enable</Nullable>
66
<EmbedUntrackedSources>true</EmbedUntrackedSources>
77
<IncludeSymbols>true</IncludeSymbols>
88
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1010

11-
<Version>3.1.1</Version>
11+
<Version>3.1.2</Version>
1212

1313
<Description>Etcd based configuration provider for Microsoft.Extensions.Configuration</Description>
1414
<Authors>Simplify community</Authors>
@@ -25,12 +25,12 @@
2525
</PropertyGroup>
2626
<ItemGroup>
2727
<PackageReference Include="dotnet-etcd" Version="8.1.0" />
28-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.6" />
28+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.5" />
2929
</ItemGroup>
3030
<ItemGroup>
3131
<None Include="..\..\images\icon.png" Pack="true" Visible="false" PackagePath="" />
3232
<None Include="CHANGELOG.md" Pack="true" PackagePath="" />
3333
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="\" />
3434
<None Include="..\..\README.md" Pack="true" Visible="false" PackagePath="\" />
3535
</ItemGroup>
36-
</Project>
36+
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<LangVersion>latest</LangVersion>
55

66
<Description>Etcd.Microsoft.Extensions.Configuration integration tests</Description>
@@ -11,20 +11,20 @@
1111
<ProjectReference Include="..\..\..\src\Etcd.Microsoft.Extensions.Configuration\Etcd.Microsoft.Extensions.Configuration.csproj" />
1212
</ItemGroup>
1313
<ItemGroup>
14-
<PackageReference Include="coverlet.msbuild" Version="6.0.*">
14+
<PackageReference Include="coverlet.msbuild" Version="8.0.*">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>
18-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.*" />
19-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.*" />
20-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.*" />
21-
<PackageReference Include="NUnit" Version="4.3.*" />
22-
<PackageReference Include="NUnit3TestAdapter" Version="5.0.*" />
18+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.*" />
19+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.*" />
20+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.*" />
21+
<PackageReference Include="NUnit" Version="4.5.*" />
22+
<PackageReference Include="NUnit3TestAdapter" Version="6.1.*" />
2323
<PackageReference Include="Moq" Version="4.20.*" />
2424
</ItemGroup>
2525
<ItemGroup>
2626
<None Update="appsettings.json">
2727
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2828
</None>
2929
</ItemGroup>
30-
</Project>
30+
</Project>

tests/Unit/Etcd.Microsoft.Extensions.Configuration.Tests/Etcd.Microsoft.Extensions.Configuration.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<LangVersion>latest</LangVersion>
55

66
<Description>Etcd.Microsoft.Extensions.Configuration integration tests under .NET Core</Description>
@@ -27,4 +27,4 @@
2727
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2828
</None>
2929
</ItemGroup>
30-
</Project>
30+
</Project>

0 commit comments

Comments
 (0)