Skip to content

Commit d2714e9

Browse files
committedFeb 12, 2024·
Update Markdown scroll
1 parent a3808a9 commit d2714e9

File tree

70 files changed

+145
-457
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+145
-457
lines changed
 

‎.github/workflows/dotnet.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
if: ${{ matrix.os == 'macos-13' }}
4141
uses: maxim-lobanov/setup-xcode@v1
4242
with:
43-
xcode-version: '15.0'
43+
xcode-version: '15.1'
4444

4545
- name: Setup .NET
4646
uses: actions/setup-dotnet@v3
@@ -60,4 +60,4 @@ jobs:
6060
run: |
6161
cd ${{ env.WORKING_DIRECTORY_PATH }}
6262
dotnet restore --configfile NuGet.config
63-
dotnet build
63+
dotnet build --tl

‎Auth/AuthServices/AuthService.cs

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,4 @@
22

33
using Microsoft.Identity.Client;
44

5-
public class AuthService : BaseAuthService
6-
{
7-
public AuthService(IPublicClientApplication publicClientApplication) : base(publicClientApplication)
8-
{
9-
}
10-
}
5+
public class AuthService(IPublicClientApplication publicClientApplication) : BaseAuthService(publicClientApplication);

0 commit comments

Comments
 (0)
Please sign in to comment.