You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have seen you have started to add MSFS and convert to .Net. For me, one of problem is simconnect managed DLL.
I have a solution to use pure C# (.Net8.0 or 9.0 ) Simconnect :
No reliance on SimConnect.MSI or the native client library it installs.
Ability to compile projects using the Any CPU build setting.
Simpler Data Structure Definition/Registration system using custom attributes.
Overloads provided for those APIs where appropriate allowing use of default values like the native library has.
Ability to pass an instance object to a RequestDataOnSimObject call, allowing the instance to be auto updated as new requested data is received.
Working support for Client Data API functions
No SimConnect.CFG file required/used, Server Name and Port provided in the SimConnect.Open(…) call.
One code for all simulators.
I have convert sim.cs to use this inified simconnect and all works fine except small part of code in variables.cs concerning "public void AddFromFile(string filename)".
Tell me if you are interesting to use unified simconnect and if you can help me to solve my problem.
Thanks again !
The text was updated successfully, but these errors were encountered:
Hi,
Thanks a lot for JoinFS !
I have seen you have started to add MSFS and convert to .Net. For me, one of problem is simconnect managed DLL.
I have a solution to use pure C# (.Net8.0 or 9.0 ) Simconnect :
No reliance on SimConnect.MSI or the native client library it installs.
Ability to compile projects using the Any CPU build setting.
Simpler Data Structure Definition/Registration system using custom attributes.
Overloads provided for those APIs where appropriate allowing use of default values like the native library has.
Ability to pass an instance object to a RequestDataOnSimObject call, allowing the instance to be auto updated as new requested data is received.
Working support for Client Data API functions
No SimConnect.CFG file required/used, Server Name and Port provided in the SimConnect.Open(…) call.
One code for all simulators.
I have convert sim.cs to use this inified simconnect and all works fine except small part of code in variables.cs concerning "public void AddFromFile(string filename)".
Tell me if you are interesting to use unified simconnect and if you can help me to solve my problem.
Thanks again !
The text was updated successfully, but these errors were encountered: