New Community Ranking System
Our Community ranking system has recently been updated. You may notice changes in user rankings and receive system messages or notifications. If you have questions about how the new ranking works, please refer to the announcement post for more details (click here).
C# Templates for Experior 7
Digital Twin
This knowledge base is addressing usage of software Experior, Machine Expert Twin and future Automation Expert Twin. These softwares are used to create smaller instances of digital twins for use in industrial automation, warehouse management, design & engineering with more..
Search in
Improve your search experience:
Exact phrase→Use quotes " "(e.g., "error 404")
Wildcard→Use * for partial words(e.g., build*, *tion)
AND / OR→Combine keywords(e.g., login AND error, login OR sign‑in)
Keep it short→Use 2–3 relevant words, not full sentences
Filters→Narrow results by section(Knowledge Base, Users, Products)
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
With a developer license for Experior 7 it is possible to create custom catalogs, controllers, plugins and more in your Experior model. We have three different templates packaged in a .vsix (Visual Studio Integration Extension) file that you can download and run, as long as you have Experior 7 and Visual Studio installed. This .vsix is attached in this article in a zip file - Simply download and extract to run the installer.
To avoid confusion, we recommend removing the old Catalog, Controller and Plugin templates before installing the new ones.
Removing old templates
To remove the old Visual Studio templates:
Close Visual Studio
Navigate to the C# visual studio template folder.
The standard path for this is: C:\Users\your username\Documents\Visual Studio20XX\Templates\ProjectTemplates\(Visual) C#
Delete the zip files named:
“Experior-7.0-Catalog-Template.zip”, “Experior-7.0-Plugin-Template.zip” and “Experior-7.0-Controller-Template.zip”.
If you get an error dialog saying:
“This extension is already installed to all applicable products”
If any of the folders here contain Experior template files. Delete the folder. Then try running the VSIX installer again.
Output path
By default, the output path of the templates is set to the default installation location of the Experior executable.
This is defined by the environment variable: “EXPERIOR7_BIN” which is created when you install Experior 7 - by default: (C:\Xcelgo\Xcelgo Experior 7).
This means that when you build your project, the project output (*.dll) is created in that folder.
Make sure “Copy local” is set to “false” for Experior specific dll’s.
You can change this output path through the project properties. But in order for Experior to load it, you need to provide an External Libraries location.
This can be done in several ways: – Through the catalog selector’s External Libraries dropdown when Experior is started with “-config” – Through using aStartup Configuration filewhen Experior is started with “-startupconfiguration <file>” – Through an External Libraries path when Experior is started with “-libs <path>”
You can also manually drag and drop the dll from the folder you build to, into the Experior installation folder.
Warning:
When using an External Library folder, any dll that is present inboththe External Library folder and the Experior installation folder causes errors.