Skip to content

Commit dce8d49

Browse files
authored
Merge pull request #6 from Calabonga/oreder-index-for-both-pipeline
ApplicationOrderIndex virtual
2 parents 951b125 + cf03a6c commit dce8d49

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
## Что нового
66

7+
### Версия 2.4.3
8+
9+
* ApplicationOrderIndex сделан virtual для возможности переопределения.
10+
711
### Версия 2.4.2
812

913
* Для ConfgureApplication() и для ConfigureServices() теперь есть свой собственный индекс сортировки.

src/Calabonga.AspNetCore.AppDefinitions/AppDefinition.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public virtual void ConfigureApplication(WebApplication app) { }
2727
/// <summary>
2828
/// Order index for including into pipeline for ConfigureApplication() . Default value is 0 for, that's why order index can be undefined.
2929
/// </summary>
30-
public int ApplicationOrderIndex => 0;
30+
public virtual int ApplicationOrderIndex => 0;
3131

3232
/// <summary>
3333
/// Enable or disable to register into pipeline for the current application Definition.

src/Calabonga.AspNetCore.AppDefinitions/Calabonga.AspNetCore.AppDefinitions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<Title>Calabonga.AspNetCore.AppDefinitions</Title>
9-
<Version>2.4.2</Version>
9+
<Version>2.4.3</Version>
1010
<Authors>Calabonga</Authors>
1111
<Company>Calabonga Soft</Company>
1212
<Product>Calabonga.AspNetCore.AppDefinitions</Product>

0 commit comments

Comments
 (0)