Skip to content

Commit

Permalink
Fixing Nuget Package (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnPucel committed Feb 8, 2023
1 parent 149ca28 commit d83b890
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ Vault is a package available at [Hashicorp Nuget][nuget-hashicorp]. We've provid

Using Powershell:
```shell-session
Install-Package Vault -Version "PackageVersion"
Install-Package HashiCorp.Vault -Version "0.1.0-beta"
```

Using Nuget CLI:
```shell-session
nuget install Vault -Version "0.1.0-beta"
nuget install HashiCorp.Vault -Version "0.1.0-beta"
```

> _**Note**_: You can find the latest package version in the Release
Expand Down
10 changes: 7 additions & 3 deletions src/Vault/Vault.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo><!-- setting GenerateAssemblyInfo to false causes this bug https://github.com/dotnet/project-system/issues/3934 -->
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Vault</AssemblyName>
<PackageId>Vault</PackageId>
<PackageId>HashiCorp.Vault</PackageId>
<OutputType>Library</OutputType>
<Authors>Vault DevEx</Authors>
<Company>Hashicorp</Company>
Expand All @@ -14,12 +14,16 @@
<RootNamespace>Vault</RootNamespace>
<Version>0.1.0-beta</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Vault.xml</DocumentationFile>
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/hashicorp/vault-client-dotnet.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Minor update</PackageReleaseNotes>
<NoWarn>CS0612</NoWarn><!-- CS0612 is a warning for obsolete attributes. OpenApi marks all deprecated fields as obsolete making this a very noise warning-->
</PropertyGroup>

<ItemGroup>
<None Include="../../README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="JsonSubTypes" Version="2.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
Expand Down

0 comments on commit d83b890

Please sign in to comment.