|
7 | 7 | <PackageId>VaultSharp.Extensions.Configuration</PackageId>
|
8 | 8 | <PackageLicenseExpression>MIT</PackageLicenseExpression>
|
9 | 9 | <Nullable>enable</Nullable>
|
10 |
| - <TargetFrameworks>net6.0;net7.0;netstandard2.1</TargetFrameworks> |
| 10 | + <TargetFrameworks>net6.0;net7.0;netstandard2.0;netstandard2.1</TargetFrameworks> |
11 | 11 | <IncludeSymbols>true</IncludeSymbols>
|
12 | 12 | <SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
13 | 13 | <Copyright>Copyright 2023 © Mikhail 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.1, .NET 6 & .NET 7 |
| 20 | + This library is built with .NET Standard 2.0, 2.1, .NET 6 & .NET 7 |
21 | 21 | </Description>
|
22 | 22 | <PackageTags>Vault;Configuration;Data protection;Hashicorp</PackageTags>
|
23 | 23 | </PropertyGroup>
|
|
46 | 46 | </PackageReference>
|
47 | 47 | </ItemGroup>
|
48 | 48 |
|
| 49 | + <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
| 50 | + <PackageReference Include="System.Text.Json" Version="7.0.2" /> |
| 51 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" /> |
| 52 | + <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" /> |
| 53 | + <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.3" /> |
| 54 | + <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0"> |
| 55 | + <PrivateAssets>all</PrivateAssets> |
| 56 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 57 | + </PackageReference> |
| 58 | + </ItemGroup> |
| 59 | + |
49 | 60 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
|
50 | 61 | <PackageReference Include="System.Text.Json" Version="7.0.2" />
|
51 | 62 | <PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
|
52 | 63 | <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="7.0.0" />
|
53 | 64 | <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
|
54 |
| - <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.1"> |
| 65 | + <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.4"> |
55 | 66 | <PrivateAssets>all</PrivateAssets>
|
56 | 67 | <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
57 | 68 | </PackageReference>
|
|
73 | 84 | <PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
|
74 | 85 | <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="7.0.0" />
|
75 | 86 | <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
|
76 |
| - <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.1"> |
| 87 | + <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.4"> |
77 | 88 | <PrivateAssets>all</PrivateAssets>
|
78 | 89 | <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
79 | 90 | </PackageReference>
|
80 | 91 | </ItemGroup>
|
81 | 92 |
|
| 93 | + <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
| 94 | + <AssemblyTitle>VaultSharp configuration extensions .NET Standard 2.0</AssemblyTitle> |
| 95 | + </PropertyGroup> |
| 96 | + |
82 | 97 | <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
|
83 | 98 | <AssemblyTitle>VaultSharp configuration extensions .NET Standard 2.1</AssemblyTitle>
|
84 | 99 | </PropertyGroup>
|
|
0 commit comments