File tree Expand file tree Collapse file tree 5 files changed +7
-4
lines changed
AuthPermissions.AspNetCore Expand file tree Collapse file tree 5 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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>
Original file line number Diff line number Diff 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>
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments