Skip to content

Commit

Permalink
NuGet packaging metadata (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
withinfocus authored Sep 16, 2024
1 parent 109353c commit a9f7212
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 6 deletions.
19 changes: 17 additions & 2 deletions extensions/Bitwarden.Core/src/Bitwarden.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,27 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<IsPackable>true</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.36.0" />
<PropertyGroup>
<Authors>Bitwarden</Authors>
<Description>Core .NET extensions library</Description>
<PackageProjectUrl>https://github.com/bitwarden/dotnet-extensions</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/bitwarden/dotnet-extensions/releases</PackageReleaseNotes>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.36.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,31 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<IsPackable>true</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PropertyGroup>
<Authors>Bitwarden</Authors>
<Description>Core .NET configuration extensions library</Description>
<PackageProjectUrl>https://github.com/bitwarden/dotnet-extensions</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/bitwarden/dotnet-extensions/releases</PackageReleaseNotes>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Bitwarden.Core\src\Bitwarden.Core.csproj" />
<ItemGroup>
<ProjectReference Include="..\..\Bitwarden.Core\src\Bitwarden.Core.csproj" />
</ItemGroup>

</Project>

0 comments on commit a9f7212

Please sign in to comment.