If you used Azure Active Directory Authentication Library (ADAL) in your customization, and get a compilation error at "using Microsoft.IdentityModel.Clients.ActiveDirectory" statement in 10.0.43 update -- this is because ADAL is deprecated and MS have removed the reference from the AOT.
You will need to migrate you code to Microsoft Authentication Library (MSAL).
In order to do that, you will need to add the Microsoft.Identity.Client.dll library to your bin-folder (can be found in other subfolders under K:\AosService\PackagesLocalDirectory), and add a corresponding reference to a VS project. The reference will then be created as an XML-file. Both the DLL and the XML files must be added to source control via "Add Items to Folder...", like this:
K:\AosService\PackagesLocalDirectory\<package name>\bin\Microsoft.Identity.Client.dll
K:\AosService\PackagesLocalDirectory\<package name>\<model name>\AxReference\Microsoft.Identity.Client.xml
Then, you will need to change the code.
Before:
using Microsoft.IdentityModel.Clients.ActiveDirectory;
...
ClientCredential clientCrendential = new ClientCredential(clientId, clientSecret);
AuthenticationContext authContext = new AuthenticationContext(authority);
AuthenticationResult authResult = authContext.AcquireToken(resource, clientCrendential);
accessToken = authResult.AccessToken;
...
After:
using Microsoft.Identity.@Client;
...
ConfidentialClientApplicationBuilder clientApplicationbuilder = ConfidentialClientApplicationBuilder::Create(clientId);
IConfidentialClientApplication app = clientApplicationbuilder
.WithClientSecret(clientSecret)
.WithAuthority(authority)
.Build();
System.Collections.Generic.List<System.String> scopes = new System.Collections.Generic.List<System.String>();
scopes.Add(resource + '/.default');
System.Collections.IEnumerable enumerable = scopes;
AcquireTokenForClientParameterBuilder parameterBuilder = app.AcquireTokenForClient(enumerable);
var task = parameterBuilder.ExecuteAsync();
task.Wait();
AuthenticationResult authResult = task.Result;
accessToken = authResult.AccessToken;
...