-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDevies.Extensions.HashiCorpVault.csproj
More file actions
51 lines (45 loc) · 2.39 KB
/
Devies.Extensions.HashiCorpVault.csproj
File metadata and controls
51 lines (45 loc) · 2.39 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<RootNamespace>Devies.Extensions.HashiCorpVault</RootNamespace>
<Authors>John Johansson</Authors>
<Company>Devies Development</Company>
<RepositoryUrl>https://github.com/DeviesDevelopment/Devies.Extensions.HashiCorpVault</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Title>Devies.Extensions.HashiCorpVault</Title>
<Description>An IConfigurationBuilder for HashiCorp vault</Description>
<PackageLicenseUrl>https://github.com/DeviesDevelopment/Devies.Extensions.HashiCorpVault/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/DeviesDevelopment/Devies.Extensions.HashiCorpVault</PackageProjectUrl>
<LangVersion>7.3</LangVersion>
<Optimize>true</Optimize>
<Version>1.0.0</Version>
<Summary>
An IConfigurationBuilder for HashiCorp vault.
Build for netstandard 2.0.
</Summary>
<UpdateVersionProperties>true</UpdateVersionProperties>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Copyright>Devies Development</Copyright>
<PackageReleaseNotes>First version</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>no</PackageRequireLicenseAcceptance>
<DefaultLanguage>English</DefaultLanguage>
<PackageTags>dotnet, core, hashicorp, vault, iconfigurationbuilder, appsettings</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>$(DefineConstants);NETCORE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Web" Condition="'$(TargetFramework)' == 'net452'" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
<PackageReference Include="RestSharp" Version="106.0.0" />
</ItemGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
</Project>