Skip to content

Commit

Permalink
Merge pull request #96 from swharden/improve-nuget-package
Browse files Browse the repository at this point in the history
Improve NuGet package metadata
  • Loading branch information
GaProgMan authored Oct 19, 2024
2 parents 31f75c1 + ce5ffc9 commit 01c2247
Show file tree
Hide file tree
Showing 3 changed files with 318 additions and 4 deletions.
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
307 changes: 307 additions & 0 deletions icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 11 additions & 4 deletions src/OwaspHeaders.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>An ASP.NET Core Middleware which adds the OWASP recommended HTTP headers for enhanced security.</Description>
<VersionPrefix>8.1.0</VersionPrefix>
<VersionPrefix>8.1.1</VersionPrefix>
<Authors>Jamie Taylor</Authors>
<PackageProjectUrl>https://github.com/GaProgMan/OwaspHeaders.Core</PackageProjectUrl>
<RepositoryUrl>https://github.com/GaProgMan/OwaspHeaders.Core.git</RepositoryUrl>
<AssemblyName>OwaspHeaders.Core</AssemblyName>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageId>OwaspHeaders.Core</PackageId>
<RuntimeFrameworkVersion>2.0.0</RuntimeFrameworkVersion>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README-NuGet.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<None Include="../LICENSE.txt" Pack="true" PackagePath="" />
<None Include="../README-NuGet.md" Pack="true" PackagePath="" />
<None Include="../changelog.md" pack="true" PackagePath="" />
</ItemGroup>
<None Include="../icon.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<Content Include="..\README.md">
<Link>README.md</Link>
Expand Down

0 comments on commit 01c2247

Please sign in to comment.