|
7 | 7 | <PackageId>VaultSharp.Extensions.Configuration</PackageId> |
8 | 8 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
9 | 9 | <Nullable>enable</Nullable> |
10 | | - <TargetFrameworks>net6.0;net7.0;netstandard2.0;netstandard2.1</TargetFrameworks> |
| 10 | + <TargetFrameworks>net6.0;net7.0;net8.0;netstandard2.0;netstandard2.1</TargetFrameworks> |
11 | 11 | <IncludeSymbols>true</IncludeSymbols> |
12 | 12 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
13 | | - <Copyright>Copyright 2023 © Mikhail Merkulov. All rights Reserved</Copyright> |
| 13 | + <Copyright>Copyright 2024 © Mikhail Merkulov. All rights Reserved</Copyright> |
14 | 14 | </PropertyGroup> |
15 | 15 |
|
16 | 16 | <PropertyGroup Label="Package"> |
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 |
| 20 | + This library is built with .NET Standard 2.0, 2.1, .NET 6, .NET 7, .NET 8 |
21 | 21 | </Description> |
22 | 22 | <PackageTags>Vault;Configuration;Data protection;Hashicorp</PackageTags> |
23 | 23 | </PropertyGroup> |
|
80 | 80 | </ItemGroup> |
81 | 81 |
|
82 | 82 | <ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> |
83 | | - <PackageReference Include="System.Text.Json" Version="7.0.3" /> |
| 83 | + <PackageReference Include="System.Text.Json" Version="7.0.4" /> |
84 | 84 | <PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" /> |
85 | 85 | <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="7.0.0" /> |
86 | 86 | <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.1" /> |
|
90 | 90 | </PackageReference> |
91 | 91 | </ItemGroup> |
92 | 92 |
|
| 93 | + <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
| 94 | + <PackageReference Include="System.Text.Json" Version="8.0.1" /> |
| 95 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" /> |
| 96 | + <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" /> |
| 97 | + <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" /> |
| 98 | + <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0"> |
| 99 | + <PrivateAssets>all</PrivateAssets> |
| 100 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 101 | + </PackageReference> |
| 102 | + </ItemGroup> |
| 103 | + |
93 | 104 | <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
94 | 105 | <AssemblyTitle>VaultSharp configuration extensions .NET Standard 2.0</AssemblyTitle> |
95 | 106 | </PropertyGroup> |
|
106 | 117 | <AssemblyTitle>VaultSharp configuration extensions .NET 7</AssemblyTitle> |
107 | 118 | </PropertyGroup> |
108 | 119 |
|
| 120 | + <PropertyGroup Condition="'$(TargetFramework)'=='net8.0'"> |
| 121 | + <AssemblyTitle>VaultSharp configuration extensions .NET 8</AssemblyTitle> |
| 122 | + </PropertyGroup> |
| 123 | + |
109 | 124 | <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'"> |
110 | 125 | <WarningLevel>5</WarningLevel> |
111 | 126 | </PropertyGroup> |
|
0 commit comments