CSharp API Library Setup: Difference between revisions

From RangerMSP Wiki - PSA software for MSPs and IT services providers
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Decompress the downloaded archive to a destination folder of your choice. In the root folder '''CommitCRM-CSharp''' you’ll find two solution files:
Decompress the downloaded archive to a destination folder of your choice. In the root folder '''CRM-CSharp''' you’ll find two solution files:


* '''CommitCRM-CSharp-2008.sln''' – for Visual Studio 2008  
* '''CRM-CSharp-2008.sln''' – for Visual Studio 2008  
* '''CommitCRM-CSharp-2010.sln''' – for Visual Studio 2010
* '''CRM-CSharp-2010.sln''' – for Visual Studio 2010


Depending of what version is installed on the local computer, open the one or the other solution file. The distributed files are plain source files (there are no precompiled files included), so you’ll have to rebuild the whole solution.  
Depending of what version is installed on the local computer, open the one or the other solution file.  


After everything is compiled, locate the '''Program.cs''' file in the '''Sample1''' project and ensure that '''config.CommitDllFolder''' and '''config.CommitDbFolder''' point to the correct paths on your computer. The file has many comments explaining each step, we recommend examining '''Program.cs''' source file before executing the compiled program. In a nutshell, the sample will search for an account (if it doesn’t find it, it will create new one), and then demonstrates adding/searching for a ticket and adding/listing charges.
The distributed files are plain source files (there are no precompiled files included), so you’ll have to rebuild the whole solution.  


To use the library in your own project you’ll have to reference the '''CommitLib.dll''' (the DLL will be created after compiling the source code).
After everything is compiled, locate the '''Program.cs''' file in the '''Sample1''' project and ensure that '''config.DllFolder''' and '''config.DbFolder''' point to the correct paths on your computer (<your-server>\RangerMSP\ThirdParty\UserDev and <your-server>\RangerMSP\Db  accordingly)..
 
The file has many comments explaining each step, we recommend examining '''Program.cs''' source file before executing the compiled program. In a nutshell, the sample will search for an account (if it doesn’t find it, it will create new one), and then demonstrates adding/searching for a ticket and adding/listing charges.
 
To use the library in your own project you’ll have to reference the '''CRMLib.dll''' (the DLL will be created after compiling the source code).
 
[[CSharp_API|Back to RangerMSP CSharp API Page]]

Latest revision as of 08:02, 8 July 2020

Decompress the downloaded archive to a destination folder of your choice. In the root folder CRM-CSharp you’ll find two solution files:

  • CRM-CSharp-2008.sln – for Visual Studio 2008
  • CRM-CSharp-2010.sln – for Visual Studio 2010

Depending of what version is installed on the local computer, open the one or the other solution file.

The distributed files are plain source files (there are no precompiled files included), so you’ll have to rebuild the whole solution.

After everything is compiled, locate the Program.cs file in the Sample1 project and ensure that config.DllFolder and config.DbFolder point to the correct paths on your computer (<your-server>\RangerMSP\ThirdParty\UserDev and <your-server>\RangerMSP\Db accordingly)..

The file has many comments explaining each step, we recommend examining Program.cs source file before executing the compiled program. In a nutshell, the sample will search for an account (if it doesn’t find it, it will create new one), and then demonstrates adding/searching for a ticket and adding/listing charges.

To use the library in your own project you’ll have to reference the CRMLib.dll (the DLL will be created after compiling the source code).

Back to RangerMSP CSharp API Page