Dot Net Plugin Post Upgrade

When upgrading to Nintex RPA 22.3.1, perform the following steps after the upgrade to ensure that your existing .Net Plugin keeps working in the newly upgraded-to version.

  1. Copy the updated plugin file from the upgraded version (C:\Program Files\Nintex Studio\dotnet-plugin) to the your folder of .dll (same folder of entry dll).

  2. Create a config file on top for the customer’s entry dll file (example: entry.dll.config text file) and add the following parameters to the file:

    <configuration>
    <configSections>
    <runtime>
    <dependentAssembly>
    <assemblyIdentity name="Leo.Plugin.Library" publicKeyToken="1E94CC96D0565216" culture="neutral" />
    <bindingRedirect oldVersion="0.0.0.0-29.99.99.99" newVersion="1.0.3.0" />
    </dependentAssembly>
    </assemblyBinding>
    </runtime>
    </configuration>

  3. Save your changes.

This is relevant to all .NET Automation Commands.