Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
c2688a4
Add MauiBlazorWebEntra sample using Microsoft Entra External ID
mattleibow Mar 12, 2026
9c82ea2
Add Account page, platform auth (iOS/Android/Mac Catalyst), and Azure…
mattleibow Mar 16, 2026
4bb1457
Fix iOS keychain entitlements and use bundle ID for keychain group
mattleibow Mar 16, 2026
9c95af5
Modernize C# code and remove Mac Catalyst workaround
mattleibow Mar 16, 2026
0c76bba
Add auto-login on startup via silent token acquisition
mattleibow Mar 16, 2026
4bfbd70
Make Setup-Azure.ps1 fully idempotent for re-runs
mattleibow Mar 16, 2026
f8ca653
Use addPassword for multi-machine safe secret management
mattleibow Mar 16, 2026
40dab9e
Move setup/teardown scripts to scripts/ folder
mattleibow Mar 16, 2026
88b5418
Add Windows auth support for Entra External ID (CIAM)
mattleibow Mar 16, 2026
fa5a18b
Refactor MSAL setup into extension methods
mattleibow Mar 16, 2026
eaeb0dc
Fix iOS keychain config for MSAL token persistence
mattleibow Mar 16, 2026
555df7b
Add Mac Catalyst auth workaround and token persistence
mattleibow Mar 24, 2026
e0e2039
Add workforce sample copy
mattleibow Apr 17, 2026
dde33d3
Migrate copied sample to Entra workforce
mattleibow Apr 17, 2026
43c8252
Fix Account.razor claim order for workforce tokens
mattleibow Apr 17, 2026
ba08cc3
Fix stale assembly names in MAUI index.html
mattleibow Apr 17, 2026
1a54996
Address review findings: open redirect and teardown error handling
mattleibow Apr 17, 2026
cb3bc91
Harden setup and teardown scripts
mattleibow Apr 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions 10.0/MauiBlazorWebEntra/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto

###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp

###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary

###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary

###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
Loading
Loading