Skip to content

Commit 76334af

Browse files
committed
8.0.0 updated release notes
1 parent 58106bc commit 76334af

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

AuthPermissions.AspNetCore/CreateNuGetRelease.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
<copyright>Copyright (c) 2021 Jon P Smith</copyright>
99
<description>Provides extra authorization and multi-tenant features to an ASP.NET Core application.</description>
1010
<releaseNotes>
11-
- This NuGet only supports NET8 and all the examples are now using NET8
11+
- Simplified to one NET type. This makes it easier to update for future NET releases
1212
- All vulnerable NuGets updated
1313
- Any depreciated NuGets removed
14+
- All examples in this solution are now using NET8
1415
- NOTE: uses old Microsoft.Graph version 4.?, which is still supported by Microsoft
1516
</releaseNotes>
1617
<license type="expression">MIT</license>

AuthPermissions.AspNetCore/MultiProjPack.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
<copyright>Copyright (c) 2021 Jon P Smith</copyright>
1111
<description>Provides extra authorization and multi-tenant features to an ASP.NET Core application.</description>
1212
<releaseNotes>
13-
- This NuGet only supports NET8 and all the examples are now using NET8
13+
- Simplified to one NET type. This makes it easier to update for future NET releases
1414
- All vulnerable NuGets updated
1515
- Any depreciated NuGets removed
16+
- All examples in this solution are now using NET8
1617
- NOTE: uses old Microsoft.Graph version 4.?, which is still supported by Microsoft
1718
</releaseNotes>
1819
<license type="expression">MIT</license>

AuthPermissions.AspNetCore/ShardingServices/GetSetShardingEntriesFileStoreCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public List<ShardingEntry> GetAllShardingEntries()
102102

103103
/// <summary>
104104
/// This returns a <see cref="ShardingEntry"/> where the <see cref="ShardingEntry.Name"/> matches
105-
/// the <see cref="shardingEntryName"/> parameter.
105+
/// the <see parameter="shardingEntryName"/> parameter.
106106
/// </summary>
107107
/// <param name="shardingEntryName"></param>
108108
/// <returns>Returns the found <see cref="ShardingEntry"/>, or null if not found.</returns>

AuthPermissions.AspNetCore/ShardingServices/IGetSetShardingEntries.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public interface IGetSetShardingEntries
2525

2626
/// <summary>
2727
/// This returns a <see cref="ShardingEntry"/> where the <see cref="ShardingEntry.Name"/> matches
28-
/// the <see cref="shardingEntryName"/> parameter.
28+
/// the <see parameter="shardingEntryName"/> parameter.
2929
/// </summary>
3030
/// <param name="shardingEntryName">The name of the <see cref="ShardingEntry"/></param>
3131
/// <returns>Returns the found <see cref="ShardingEntry"/>, or null if not found.</returns>

AuthPermissions.AspNetCore/ShardingServices/ShardingEntryOptions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public ShardingEntryOptions(bool hybridMode)
5353
/// based on which database provider you selected. NOTE: If using custom database, then you MUST
5454
/// define the <see cref="ShardingEntry.DatabaseType"/> with the short form of the custom
5555
/// database provider name before you call this method.</param>
56+
/// <param name="authPContext">AuthP's database DbContext</param>
5657
/// <exception cref="ArgumentNullException"></exception>
5758
public void FormDefaultShardingEntry(AuthPermissionsOptions options, AuthPermissionsDbContext authPContext = null)
5859
{

0 commit comments

Comments
 (0)