Skip to content

Commit 976a051

Browse files
committed
[v6.0.0] Lib.AspNetCore.ServerTiming
1 parent 0ff94ca commit 976a051

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Lib.AspNetCore.ServerTiming 6.0.0
2+
### Additions and Changes
3+
- Adjusted TFMs to current .NET support policy.
4+
- Moved abstractions to [Lib.ServerTiming.Abstractions](https://www.nuget.org/packages/Lib.ServerTiming.Abstractions/) package
5+
16
## Lib.AspNetCore.ServerTiming 5.1.0
27
### Additions and Changes
38
- Removed upper bounds on dependencies for .NET 6 TFM so it can be used with .NET 7 without resolution issues.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![NuGet Version](https://img.shields.io/nuget/v/Lib.Azure.Functions.Worker.ServerTiming?label=Lib.Azure.Functions.Worker.ServerTiming&logo=nuget)](https://www.nuget.org/packages/Lib.Azure.Functions.Worker.ServerTiming)
66
[![NuGet Downloads](https://img.shields.io/nuget/dt/Lib.Azure.Functions.Worker.ServerTiming?label=⭳)](https://www.nuget.org/packages/Lib.Azure.Functions.Worker.ServerTiming)
77

8-
Server Timing API provides a convenient way to communicate performance metrics about the request-response cycle to the user agent (which conveniently includes developer tools in the browser). Here you can find a set of libraries which simplify the onboarding of Server Timing API in .NET solutions:
8+
Server Timing API provides a convenient way to communicate performance metrics about the request-response cycle to the user agent (which conveniently includes developer tools in the browser). Here you can find a set of libraries that simplify the onboarding of Server Timing API in .NET projects:
99
- Lib.AspNetCore.ServerTiming for ASP.NET Core
1010
- Lib.Azure.Functions.Worker.ServerTiming for isolated worker process Azure Functions
1111

docs/DocFx.AspNetCore.ServerTiming/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![NuGet Version](https://img.shields.io/nuget/v/Lib.Azure.Functions.Worker.ServerTiming?label=Lib.Azure.Functions.Worker.ServerTiming&logo=nuget)](https://www.nuget.org/packages/Lib.Azure.Functions.Worker.ServerTiming)
66
[![NuGet Downloads](https://img.shields.io/nuget/dt/Lib.Azure.Functions.Worker.ServerTiming?label=⭳)](https://www.nuget.org/packages/Lib.Azure.Functions.Worker.ServerTiming)
77

8-
Server Timing API provides a convenient way to communicate performance metrics about the request-response cycle to the user agent (which conveniently includes developer tools in the browser). Here you can find a set of libraries which simplify the onboarding of Server Timing API in .NET solutions:
8+
Server Timing API provides a convenient way to communicate performance metrics about the request-response cycle to the user agent (which conveniently includes developer tools in the browser). Here you can find a set of libraries that simplify the onboarding of Server Timing API in .NET projects:
99
- Lib.AspNetCore.ServerTiming for ASP.NET Core
1010
- Lib.Azure.Functions.Worker.ServerTiming for isolated worker process Azure Functions
1111

src/Lib.AspNetCore.ServerTiming/Lib.AspNetCore.ServerTiming.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<PropertyGroup>
33
<Description>Lib.AspNetCore.ServerTiming is a library which provides Server Timing API support for ASP.NET Core.</Description>
44
<Copyright>Copyright © 2017 - 2023 Tomasz Pęczek</Copyright>
5-
<VersionPrefix>5.1.0</VersionPrefix>
5+
<VersionPrefix>6.0.0</VersionPrefix>
66
<Authors>Tomasz Pęczek</Authors>
77
<TargetFrameworks>net462;netcoreapp2.1;net6.0;net7.0</TargetFrameworks>
88
<AssemblyTitle>Lib.AspNetCore.ServerTiming</AssemblyTitle>
99
<AssemblyName>Lib.AspNetCore.ServerTiming</AssemblyName>
1010
<PackageId>Lib.AspNetCore.ServerTiming</PackageId>
1111
<PackageTags>aspnetcore;servertiming;performance</PackageTags>
12-
<PackageProjectUrl>https://github.com/tpeczek/Lib.AspNetCore.ServerTiming</PackageProjectUrl>
12+
<PackageProjectUrl>https://github.com/tpeczek/dotnet-server-timing</PackageProjectUrl>
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1414
<PackageReadmeFile>README.md</PackageReadmeFile>
1515
<RepositoryType>git</RepositoryType>
16-
<RepositoryUrl>git://github.com/tpeczek/Lib.AspNetCore.ServerTiming</RepositoryUrl>
16+
<RepositoryUrl>git://github.com/tpeczek/dotnet-server-timing</RepositoryUrl>
1717
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute>
1818
<GenerateAssemblyDescriptionAttribute>true</GenerateAssemblyDescriptionAttribute>
1919
<GenerateAssemblyProductAttribute>true</GenerateAssemblyProductAttribute>
@@ -29,8 +29,8 @@
2929
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All" />
3030
</ItemGroup>
3131
<ItemGroup>
32-
<ProjectReference Include="..\..\src\Lib.ServerTiming.Abstractions\Lib.ServerTiming.Abstractions.csproj" />
33-
<!-- <PackageReference Include="Lib.ServerTiming.Abstractions" Version="1.0.0" /> -->
32+
<!-- <ProjectReference Include="..\..\src\Lib.ServerTiming.Abstractions\Lib.ServerTiming.Abstractions.csproj" /> -->
33+
<PackageReference Include="Lib.ServerTiming.Abstractions" Version="1.0.0" />
3434
</ItemGroup>
3535
<ItemGroup Condition="('$(TargetFramework)' == 'netcoreapp2.1') Or ('$(TargetFramework)' == 'net462')">
3636
<PackageReference Include="Microsoft.AspNetCore.Http" Version="[2.1.0,3.0.0)" />

0 commit comments

Comments
 (0)