Skip to content

Commit

Permalink
remove product headers
Browse files Browse the repository at this point in the history
  • Loading branch information
CypherPotato committed Aug 16, 2024
1 parent fc7c391 commit 8d7c2d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 18 deletions.
6 changes: 3 additions & 3 deletions src/Http/Hosting/PortableConfigurationBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ internal void Build()
/// <summary>
/// Defines an custom <see cref="IConfigurationReader"/> configuration pipeline to the builder.
/// </summary>
/// <param name="pipeline">The <see cref="IConfigurationReader"/> object.</param>
public PortableConfigurationBuilder WithConfigurationPipeline(IConfigurationReader pipeline)
/// <param name="reader">The <see cref="IConfigurationReader"/> object.</param>
public PortableConfigurationBuilder WithConfigurationReader(IConfigurationReader reader)
{
_pipeline = pipeline;
_pipeline = reader;
return this;
}

Expand Down
12 changes: 0 additions & 12 deletions src/Http/HttpKnownHeaderNames.cs
Original file line number Diff line number Diff line change
Expand Up @@ -469,12 +469,6 @@ public static class HttpKnownHeaderNames
/// </summary>
public const string Warning = "Warning";

/// <summary>
/// The HTTP X-AspNet-Version header.
/// <para>Indicates the version of ASP.NET that the server is using to process the request.</para>
/// </summary>
public const string XAspNetVersion = "X-AspNet-Version";

/// <summary>
/// The HTTP X-Content-Duration header.
/// <para>Specifies the duration of the content in seconds, often used for media files.</para>
Expand All @@ -493,12 +487,6 @@ public static class HttpKnownHeaderNames
/// </summary>
public const string XFrameOptions = "X-Frame-Options";

/// <summary>
/// The HTTP X-MSEdge-Ref header.
/// <para>Used by Microsoft Edge to provide information about the request context, often for analytics and debugging purposes.</para>
/// </summary>
public const string XMSEdgeRef = "X-MSEdge-Ref";

/// <summary>
/// The HTTP X-Powered-By header.
/// <para>Indicates the technology or framework that powers the web application, often used for informational purposes.</para>
Expand Down
6 changes: 3 additions & 3 deletions src/Sisk.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
<RepositoryType>git</RepositoryType>
<PackageTags>http-server,http,web framework,event sources,web sockets</PackageTags>

<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Version>1.0.0.0-rc8</Version>
<AssemblyVersion>1.0</AssemblyVersion>
<FileVersion>1.0</FileVersion>
<Version>1.0</Version>

<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<SignAssembly>False</SignAssembly>
Expand Down

0 comments on commit 8d7c2d2

Please sign in to comment.