I'm not good at English. I'm sorry. Questions to many capable coders around the world.
- .Net framework 4.7.2
- Visual Studio 2019
- Using Microsoft.directX API
I'm trying to set the app.exe.config file so that the Loaderlock MDA error doesn't appear when someone else starts the program.
in application.exe.config File
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="VideoPlayerTest.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<mdaConfig>
<assistants>
<loaderLock/>
</assistants>
</mdaConfig>
</configuration>
How do I implement the expression syntax to release(loaderlock cancel)
Please help new coding beginners thank you
2021 08 30 at solved by simon Mourier's advice
<mdaConfig>
<assistants>
<loaderLock enable="false"/>
</assistants>
</mdaConfig>
thank you adivicer
and I have a friend who asked the same question as me. https://www.pcreview.co.uk/threads/disable-mda-for-loaderlock.2851033/