|
7 | 7 | <PackageId>VaultSharp.Extensions.Configuration</PackageId>
|
8 | 8 | <PackageLicenseExpression>MIT</PackageLicenseExpression>
|
9 | 9 | <Nullable>enable</Nullable>
|
10 |
| - <TargetFrameworks>net6.0;net7.0;net8.0;netstandard2.0;netstandard2.1</TargetFrameworks> |
| 10 | + <TargetFrameworks>net6.0;net7.0;net8.0;net9.0;netstandard2.0;netstandard2.1</TargetFrameworks> |
11 | 11 | <IncludeSymbols>true</IncludeSymbols>
|
12 | 12 | <SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
13 | 13 | <Copyright>Copyright 2025 © Mykhaylo Merkulov. All rights Reserved</Copyright>
|
|
17 | 17 | <Product>VaultSharp.Extensions.Configuration</Product>
|
18 | 18 | <Description>
|
19 | 19 | Configuration extension that allows you to use Hashicorp Vault as a configuration backend.
|
20 |
| - This library is built with .NET Standard 2.0, 2.1, .NET 6, .NET 7, .NET 8 |
| 20 | + This library is built with .NET Standard 2.0, 2.1, .NET 6, .NET 7, .NET 8, .NET 9 |
21 | 21 | </Description>
|
22 | 22 | <PackageTags>Vault;Configuration;Data protection;Hashicorp</PackageTags>
|
23 | 23 | <PackageReadmeFile>README.md</PackageReadmeFile>
|
|
105 | 105 | </PackageReference>
|
106 | 106 | </ItemGroup>
|
107 | 107 |
|
| 108 | + <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'"> |
| 109 | + <PackageReference Include="System.Text.Json" Version="9.0.4" /> |
| 110 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.4" /> |
| 111 | + <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.4" /> |
| 112 | + <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.4" /> |
| 113 | + <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0"> |
| 114 | + <PrivateAssets>all</PrivateAssets> |
| 115 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 116 | + </PackageReference> |
| 117 | + </ItemGroup> |
| 118 | + |
108 | 119 | <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
109 | 120 | <AssemblyTitle>VaultSharp configuration extensions .NET Standard 2.0</AssemblyTitle>
|
110 | 121 | </PropertyGroup>
|
|
125 | 136 | <AssemblyTitle>VaultSharp configuration extensions .NET 8</AssemblyTitle>
|
126 | 137 | </PropertyGroup>
|
127 | 138 |
|
| 139 | + <PropertyGroup Condition="'$(TargetFramework)'=='net9.0'"> |
| 140 | + <AssemblyTitle>VaultSharp configuration extensions .NET 9</AssemblyTitle> |
| 141 | + </PropertyGroup> |
| 142 | + |
128 | 143 | <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">
|
129 | 144 | <WarningLevel>5</WarningLevel>
|
130 | 145 | </PropertyGroup>
|
|
0 commit comments