-
Notifications
You must be signed in to change notification settings - Fork 377
hololens2
pmaytak edited this page Feb 12, 2021
·
6 revisions
Unity IL2CPP scripting backend performs code optimization by doing code stripping - removing code and dependencies which it thinks are unused. This creates an issue when your code uses reflection. The code stripping tool cannot always detect those classes or members that are used with reflection. One recommended solution is to add the following assemblies to the Assets/Links.xml
in your project:
<assembly fullname="System" preserve="all" />
<assembly fullname="System.Core" preserve="all" />
Unity Manual - Managed code stripping page has more detailed information about this behavior. See [Bug] HoloLens 2 device code flow does not work #2231 for additional information and discussion.
- Home
- Why use MSAL.NET
- Is MSAL.NET right for me
- Scenarios
- Register your app with AAD
- Client applications
- Acquiring tokens
- MSAL samples
- Known Issues
- Acquiring a token for the app
- Acquiring a token on behalf of a user in Web APIs
- Acquiring a token by authorization code in Web Apps
- AcquireTokenInteractive
- WAM - the Windows broker
- .NET Core
- Maui Docs
- Custom Browser
- Applying an AAD B2C policy
- Integrated Windows Authentication for domain or AAD joined machines
- Username / Password
- Device Code Flow for devices without a Web browser
- ADFS support
- High Availability
- Regional
- Token cache serialization
- Logging
- Exceptions in MSAL
- Provide your own Httpclient and proxy
- Extensibility Points
- Clearing the cache
- Client Credentials Multi-Tenant guidance
- Performance perspectives
- Differences between ADAL.NET and MSAL.NET Apps
- PowerShell support
- Testing apps that use MSAL
- Experimental Features
- Proof of Possession (PoP) tokens
- Using in Azure functions
- Extract info from WWW-Authenticate headers
- SPA Authorization Code