This repository was archived by the owner on Nov 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathVault.csproj
More file actions
31 lines (25 loc) · 1.35 KB
/
Vault.csproj
File metadata and controls
31 lines (25 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.1;netstandard2.0</TargetFrameworks>
<PackageId>Vault</PackageId>
<PackageProjectUrl>https://github.com/Chatham/Vault.NET/</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/Chatham/Vault.NET/blob/master/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://github.com/Chatham/Vault.NET/blob/master/vault.png?raw=true</PackageIconUrl>
<PackageVersion>0.9.1.4</PackageVersion>
<PackageTags>vault;api;hashicorp</PackageTags>
<Authors>Chatham Financial Corp.</Authors>
<Description>.NET API for Vault (https://www.vaultproject.io/)</Description>
<Copyright>Copyright 2018 (c) Chatham Financial Corp. All rights reserved.</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NewtonSoft.Json" Version="12.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.1'">
<PackageReference Include="System.Collections" Version="4.3.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="1.1.2" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.Extensions.Options" Version="2.2.0" />
</ItemGroup>
</Project>