Skip to content

Commit 2ad87f2

Browse files
committed
Fork the library
1 parent 3f32430 commit 2ad87f2

File tree

12 files changed

+21
-28
lines changed

12 files changed

+21
-28
lines changed

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

33
Copyright (c) 2024 Nearform Ltd.
4+
Copyright (c) 2024 Ross Nelson.
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SlowDown Middleware
22

3-
![Build status](https://github.com/nearform/aspnetcore-slow-down/actions/workflows/dotnet.yml/badge.svg) ![License](https://img.shields.io/github/license/nearform/aspnetcore-slow-down)
3+
![Build status](https://github.com/rnelson/aspnetcore-slow-down/actions/workflows/dotnet.yml/badge.svg) ![License](https://img.shields.io/github/license/rnelson/aspnetcore-slow-down)
44

55
A slow-down middleware for ASP.NET Core.
66

@@ -9,15 +9,15 @@ A slow-down middleware for ASP.NET Core.
99
**This package is not yet available on NuGet. When it is, you will be able to install the package with the following:**
1010

1111
```bash
12-
dotnet add package Nearform.AspNetCore.SlowDown
12+
dotnet add package Libexec.AspNetCore.SlowDown
1313
```
1414

1515
## Usage
1616

1717
### Adding the middleware
1818

1919
```csharp
20-
using Nearform.AspNetCore.SlowDown;
20+
using Libexec.AspNetCore.SlowDown;
2121

2222
var builder = WebApplication.CreateBuilder(args);
2323

@@ -138,4 +138,4 @@ Delay remains the same because the value of `MaxDelay` option is `100000`.
138138

139139
## License
140140

141-
`Nearform.AspNetCore.SlowDown` is released under the MIT License.
141+
`Libexec.AspNetCore.SlowDown` is released under the MIT license. Contains code written by Nearform Ltd. released under the MIT license.

SlowDown.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nearform.AspNetCore.SlowDown", "src\SlowDown\Nearform.AspNetCore.SlowDown.csproj", "{5B180A40-3156-47FA-B1D0-8919D1411704}"
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Libexec.AspNetCore.SlowDown", "src\SlowDown\Libexec.AspNetCore.SlowDown.csproj", "{5B180A40-3156-47FA-B1D0-8919D1411704}"
44
EndProject
55
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SlowDown.Tests", "test\SlowDown.Tests\SlowDown.Tests.csproj", "{C8073413-384F-48A2-82D5-713A15E9A88F}"
66
EndProject

samples/BasicSlowDownExample/BasicSlowDownExample.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Authors>Ross Nelson</Authors>
8-
<Company>Nearform Ltd.</Company>
9-
<Copyright>Copyright (C) 2024 Nearform Ltd.</Copyright>
8+
<Copyright>Copyright (C) 2024 Nearform Ltd; Copyright (C) 2024 Ross Nelson.</Copyright>
109
</PropertyGroup>
1110

1211
<ItemGroup>
13-
<ProjectReference Include="..\..\src\SlowDown\Nearform.AspNetCore.SlowDown.csproj" />
12+
<ProjectReference Include="..\..\src\SlowDown\Libexec.AspNetCore.SlowDown.csproj" />
1413
</ItemGroup>
1514

1615
</Project>

samples/DistributedCacheSlowDownExample/DistributedCacheSlowDownExample.ApiService/DistributedCacheSlowDownExample.ApiService.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<Authors>Ross Nelson</Authors>
8-
<Company>Nearform Ltd.</Company>
9-
<Copyright>Copyright (C) 2024 Nearform Ltd.</Copyright>
8+
<Copyright>Copyright (C) 2024 Nearform Ltd; Copyright (C) 2024 Ross Nelson.</Copyright>
109
</PropertyGroup>
1110

1211
<ItemGroup>
13-
<ProjectReference Include="..\..\..\src\SlowDown\Nearform.AspNetCore.SlowDown.csproj" />
12+
<ProjectReference Include="..\..\..\src\SlowDown\Libexec.AspNetCore.SlowDown.csproj" />
1413
<ProjectReference Include="..\DistributedCacheSlowDownExample.ServiceDefaults\DistributedCacheSlowDownExample.ServiceDefaults.csproj" />
1514
</ItemGroup>
1615

samples/DistributedCacheSlowDownExample/DistributedCacheSlowDownExample.ApiService2/DistributedCacheSlowDownExample.ApiService2.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Authors>Ross Nelson</Authors>
8-
<Company>Nearform Ltd.</Company>
9-
<Copyright>Copyright (C) 2024 Nearform Ltd.</Copyright>
8+
<Copyright>Copyright (C) 2024 Nearform Ltd; Copyright (C) 2024 Ross Nelson.</Copyright>
109
</PropertyGroup>
1110

1211
<ItemGroup>
13-
<ProjectReference Include="..\..\..\src\SlowDown\Nearform.AspNetCore.SlowDown.csproj" />
12+
<ProjectReference Include="..\..\..\src\SlowDown\Libexec.AspNetCore.SlowDown.csproj" />
1413
<ProjectReference Include="..\DistributedCacheSlowDownExample.ServiceDefaults\DistributedCacheSlowDownExample.ServiceDefaults.csproj" />
1514
</ItemGroup>
1615

samples/DistributedCacheSlowDownExample/DistributedCacheSlowDownExample.AppHost/DistributedCacheSlowDownExample.AppHost.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<Authors>Ross Nelson</Authors>
9-
<Company>Nearform Ltd.</Company>
10-
<Copyright>Copyright (C) 2024 Nearform Ltd.</Copyright>
9+
<Copyright>Copyright (C) 2024 Nearform Ltd; Copyright (C) 2024 Ross Nelson.</Copyright>
1110
<IsAspireHost>true</IsAspireHost>
1211
<UserSecretsId>5aa6c716-9fce-49bb-a0d4-fa4aacc36b22</UserSecretsId>
1312
</PropertyGroup>

samples/DistributedCacheSlowDownExample/DistributedCacheSlowDownExample.ServiceDefaults/DistributedCacheSlowDownExample.ServiceDefaults.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
<Nullable>enable</Nullable>
77
<IsAspireSharedProject>true</IsAspireSharedProject>
88
<Authors>Ross Nelson</Authors>
9-
<Company>Nearform Ltd.</Company>
10-
<Copyright>Copyright (C) 2024 Nearform Ltd.</Copyright>
9+
<Copyright>Copyright (C) 2024 Nearform Ltd; Copyright (C) 2024 Ross Nelson.</Copyright>
1110
</PropertyGroup>
1211

1312
<ItemGroup>
@@ -24,7 +23,7 @@
2423
</ItemGroup>
2524

2625
<ItemGroup>
27-
<ProjectReference Include="..\..\..\src\SlowDown\Nearform.AspNetCore.SlowDown.csproj" />
26+
<ProjectReference Include="..\..\..\src\SlowDown\Libexec.AspNetCore.SlowDown.csproj" />
2827
</ItemGroup>
2928

3029
</Project>

samples/DistributedCacheSlowDownExample/DistributedCacheSlowDownExample.Web/DistributedCacheSlowDownExample.Web.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<Authors>Ross Nelson</Authors>
8-
<Company>Nearform Ltd.</Company>
9-
<Copyright>Copyright (C) 2024 Nearform Ltd.</Copyright>
8+
<Copyright>Copyright (C) 2024 Nearform Ltd; Copyright (C) 2024 Ross Nelson.</Copyright>
109
</PropertyGroup>
1110

1211
<ItemGroup>

samples/DistributedCacheSlowDownExample/DistributedCacheSlowDownExample.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DistributedCacheSlowDownExa
1212
EndProject
1313
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistributedCacheSlowDownExample.ApiService2", "DistributedCacheSlowDownExample.ApiService2\DistributedCacheSlowDownExample.ApiService2.csproj", "{BC9709DF-EAAF-4B49-A411-98D4C4F74267}"
1414
EndProject
15-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nearform.AspNetCore.SlowDown", "..\..\src\SlowDown\Nearform.AspNetCore.SlowDown.csproj", "{1F8C1ED5-FC92-4DFD-93A6-955310A220D2}"
15+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Libexec.AspNetCore.SlowDown", "..\..\src\SlowDown\Libexec.AspNetCore.SlowDown.csproj", "{1F8C1ED5-FC92-4DFD-93A6-955310A220D2}"
1616
EndProject
1717
Global
1818
GlobalSection(SolutionConfigurationPlatforms) = preSolution

0 commit comments

Comments
 (0)