diff --git a/CVCncLib/CVCncLib.xml b/CVCncLib/CVCncLib.xml deleted file mode 100644 index 54c5b3b9..00000000 --- a/CVCncLib/CVCncLib.xml +++ /dev/null @@ -1,11418 +0,0 @@ - - - - -CVCncLib - - - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - Verifica se è installata la WINNBI e se è una versione compatibile con .NET - - Versione compatibile con framework .NET - - - - restituisce la versione installata di WINNBI - - - - - The INIReader class can read keys from and write keys to an INI file. - - - This class uses several Win32 API functions to read from and write to INI files. It will not work on Linux or FreeBSD. - - - - - The GetPrivateProfileInt function retrieves an integer associated with a key in the specified section of an initialization file. - - Pointer to a null-terminated string specifying the name of the section in the initialization file. - Pointer to the null-terminated string specifying the name of the key whose value is to be retrieved. This value is in the form of a string; the GetPrivateProfileInt function converts the string into an integer and returns the integer. - Specifies the default value to return if the key name cannot be found in the initialization file. - Pointer to a null-terminated string that specifies the name of the initialization file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory. - The return value is the integer equivalent of the string following the specified key name in the specified initialization file. If the key is not found, the return value is the specified default value. If the value of the key is less than zero, the return value is zero. - - - - The WritePrivateProfileString function copies a string into the specified section of an initialization file. - - Pointer to a null-terminated string containing the name of the section to which the string will be copied. If the section does not exist, it is created. The name of the section is case-independent; the string can be any combination of uppercase and lowercase letters. - Pointer to the null-terminated string containing the name of the key to be associated with a string. If the key does not exist in the specified section, it is created. If this parameter is NULL, the entire section, including all entries within the section, is deleted. - Pointer to a null-terminated string to be written to the file. If this parameter is NULL, the key pointed to by the lpKeyName parameter is deleted. - Pointer to a null-terminated string that specifies the name of the initialization file. - If the function successfully copies the string to the initialization file, the return value is nonzero; if the function fails, or if it flushes the cached version of the most recently accessed initialization file, the return value is zero. - - - - The GetPrivateProfileString function retrieves a string from the specified section in an initialization file. - - Pointer to a null-terminated string that specifies the name of the section containing the key name. If this parameter is NULL, the GetPrivateProfileString function copies all section names in the file to the supplied buffer. - Pointer to the null-terminated string specifying the name of the key whose associated string is to be retrieved. If this parameter is NULL, all key names in the section specified by the lpAppName parameter are copied to the buffer specified by the lpReturnedString parameter. - Pointer to a null-terminated default string. If the lpKeyName key cannot be found in the initialization file, GetPrivateProfileString copies the default string to the lpReturnedString buffer. This parameter cannot be NULL.
Avoid specifying a default string with trailing blank characters. The function inserts a null character in the lpReturnedString buffer to strip any trailing blanks.
- Pointer to the buffer that receives the retrieved string. - Specifies the size, in TCHARs, of the buffer pointed to by the lpReturnedString parameter. - Pointer to a null-terminated string that specifies the name of the initialization file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory. - The return value is the number of characters copied to the buffer, not including the terminating null character. -
- - - The GetPrivateProfileSectionNames function retrieves the names of all sections in an initialization file. - - Pointer to a buffer that receives the section names associated with the named file. The buffer is filled with one or more null-terminated strings; the last string is followed by a second null character. - Specifies the size, in TCHARs, of the buffer pointed to by the lpszReturnBuffer parameter. - Pointer to a null-terminated string that specifies the name of the initialization file. If this parameter is NULL, the function searches the Win.ini file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory. - The return value specifies the number of characters copied to the specified buffer, not including the terminating null character. If the buffer is not large enough to contain all the section names associated with the specified initialization file, the return value is equal to the length specified by nSize minus two. - - - - The WritePrivateProfileSection function replaces the keys and values for the specified section in an initialization file. - - Pointer to a null-terminated string specifying the name of the section in which data is written. This section name is typically the name of the calling application. - Pointer to a buffer containing the new key names and associated values that are to be written to the named section. - Pointer to a null-terminated string containing the name of the initialization file. If this parameter does not contain a full path for the file, the function searches the Windows directory for the file. If the file does not exist and lpFileName does not contain a full path, the function creates the file in the Windows directory. The function does not create a file if lpFileName contains the full path and file name of a file that does not exist. - If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero.
-
- - Constructs a new IniReader instance. - Specifies the full path to the INI file (the file doesn't have to exist). - - - Gets or sets the full path to the INI file. - A String representing the full path to the INI file. - - - - Gets or sets the section you're working in. (aka 'the active section') - A String representing the section you're working in. - - - - Reads an Integer from the specified key of the specified section. - The section to search in. - The key from which to return the value. - The value to return if the specified key isn't found. - Returns the value of the specified section/key pair, or returns the default value if the specified section/key pair isn't found in the INI file. - - - Reads an Integer from the specified key of the specified section. - The section to search in. - The key from which to return the value. - Returns the value of the specified section/key pair, or returns 0 if the specified section/key pair isn't found in the INI file. - - - Reads an Integer from the specified key of the active section. - The key from which to return the value. - The section to search in. - Returns the value of the specified Key, or returns the default value if the specified Key isn't found in the active section of the INI file. - - - Reads an Integer from the specified key of the active section. - The key from which to return the value. - Returns the value of the specified key, or returns 0 if the specified key isn't found in the active section of the INI file. - - - Reads a String from the specified key of the specified section. - The section to search in. - The key from which to return the value. - The value to return if the specified key isn't found. - Returns the value of the specified section/key pair, or returns the default value if the specified section/key pair isn't found in the INI file. - - - Reads a String from the specified key of the specified section. - The section to search in. - The key from which to return the value. - Returns the value of the specified section/key pair, or returns an empty String if the specified section/key pair isn't found in the INI file. - - - Reads a String from the specified key of the active section. - The key from which to return the value. - Returns the value of the specified key, or returns an empty String if the specified key isn't found in the active section of the INI file. - - - Reads a Long from the specified key of the specified section. - The section to search in. - The key from which to return the value. - The value to return if the specified key isn't found. - Returns the value of the specified section/key pair, or returns the default value if the specified section/key pair isn't found in the INI file. - - - Reads a Long from the specified key of the specified section. - The section to search in. - The key from which to return the value. - Returns the value of the specified section/key pair, or returns 0 if the specified section/key pair isn't found in the INI file. - - - Reads a Long from the specified key of the active section. - The key from which to return the value. - The section to search in. - Returns the value of the specified key, or returns the default value if the specified key isn't found in the active section of the INI file. - - - Reads a Long from the specified key of the active section. - The key from which to return the value. - Returns the value of the specified Key, or returns 0 if the specified Key isn't found in the active section of the INI file. - - - Reads a Byte array from the specified key of the specified section. - The section to search in. - The key from which to return the value. - Returns the value of the specified section/key pair, or returns null (Nothing in VB.NET) if the specified section/key pair isn't found in the INI file. - - - Reads a Byte array from the specified key of the active section. - The key from which to return the value. - Returns the value of the specified key, or returns null (Nothing in VB.NET) if the specified key pair isn't found in the active section of the INI file. - - - Reads a Boolean from the specified key of the specified section. - The section to search in. - The key from which to return the value. - The value to return if the specified key isn't found. - Returns the value of the specified section/key pair, or returns the default value if the specified section/key pair isn't found in the INI file. - - - Reads a Boolean from the specified key of the specified section. - The section to search in. - The key from which to return the value. - Returns the value of the specified section/key pair, or returns false if the specified section/key pair isn't found in the INI file. - - - Reads a Boolean from the specified key of the specified section. - The key from which to return the value. - The value to return if the specified key isn't found. - Returns the value of the specified key pair, or returns the default value if the specified key isn't found in the active section of the INI file. - - - Reads a Boolean from the specified key of the specified section. - The key from which to return the value. - Returns the value of the specified key, or returns false if the specified key isn't found in the active section of the INI file. - - - Writes an Integer to the specified key in the specified section. - The section to write in. - The key to write to. - The value to write. - Returns true if the function succeeds, false otherwise. - - - Writes an Integer to the specified key in the active section. - The key to write to. - The value to write. - Returns true if the function succeeds, false otherwise. - - - Writes a String to the specified key in the specified section. - Specifies the section to write in. - Specifies the key to write to. - Specifies the value to write. - Returns true if the function succeeds, false otherwise. - - - Writes a String to the specified key in the active section. - The key to write to. - The value to write. - Returns true if the function succeeds, false otherwise. - - - Writes a Long to the specified key in the specified section. - The section to write in. - The key to write to. - The value to write. - Returns true if the function succeeds, false otherwise. - - - Writes a Long to the specified key in the active section. - The key to write to. - The value to write. - Returns true if the function succeeds, false otherwise. - - - Writes a Byte array to the specified key in the specified section. - The section to write in. - The key to write to. - The value to write. - Returns true if the function succeeds, false otherwise. - - - Writes a Byte array to the specified key in the active section. - The key to write to. - The value to write. - Returns true if the function succeeds, false otherwise. - - - Writes a Byte array to the specified key in the specified section. - The section to write in. - The key to write to. - The value to write. - An offset in value. - The number of elements of value to convert. - Returns true if the function succeeds, false otherwise. - - - Writes a Boolean to the specified key in the specified section. - The section to write in. - The key to write to. - The value to write. - Returns true if the function succeeds, false otherwise. - - - Writes a Boolean to the specified key in the active section. - The key to write to. - The value to write. - Returns true if the function succeeds, false otherwise. - - - Deletes a key from the specified section. - The section to delete from. - The key to delete. - Returns true if the function succeeds, false otherwise. - - - Deletes a key from the active section. - The key to delete. - Returns true if the function succeeds, false otherwise. - - - - Deletes a section from an INI file. - The section to delete. - Returns true if the function succeeds, false otherwise. - - - - Retrieves a list of all available sections in the INI file. - - - Returns an ArrayList with all available sections. - - - - - Holds the full path to the INI file. - - - - - Holds the active section name - - - - - The maximum number of bytes in a section buffer. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
diff --git a/CVCncLib/ApplicationEvents.vb b/EgwProxy.OsaiCncLib/ApplicationEvents.vb similarity index 100% rename from CVCncLib/ApplicationEvents.vb rename to EgwProxy.OsaiCncLib/ApplicationEvents.vb diff --git a/CVCncLib/CndexLinkDotNet.dll b/EgwProxy.OsaiCncLib/CndexLinkDotNet.dll similarity index 100% rename from CVCncLib/CndexLinkDotNet.dll rename to EgwProxy.OsaiCncLib/CndexLinkDotNet.dll diff --git a/CVCncLib/Config/testSam.INI b/EgwProxy.OsaiCncLib/Config/testSam.INI similarity index 100% rename from CVCncLib/Config/testSam.INI rename to EgwProxy.OsaiCncLib/Config/testSam.INI diff --git a/CVCncLib/CVCncLib.XmlSerializers.dll b/EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.XmlSerializers.dll similarity index 100% rename from CVCncLib/CVCncLib.XmlSerializers.dll rename to EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.XmlSerializers.dll diff --git a/CVCncLib/CVCncLib.dll b/EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.dll similarity index 55% rename from CVCncLib/CVCncLib.dll rename to EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.dll index 809d7a1a..c7bb1b1e 100644 Binary files a/CVCncLib/CVCncLib.dll and b/EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.dll differ diff --git a/CVCncLib/CVCncLib.dll.config b/EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.dll.config similarity index 88% rename from CVCncLib/CVCncLib.dll.config rename to EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.dll.config index 07c5e8f9..5b47729b 100644 --- a/CVCncLib/CVCncLib.dll.config +++ b/EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.dll.config @@ -2,7 +2,7 @@ -
+
@@ -36,13 +36,13 @@ - + http://192.168.20.2:8080 http://192.168.20.2:8080 - + diff --git a/CVCncLib/CVCncLib.vbproj b/EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.vbproj similarity index 59% rename from CVCncLib/CVCncLib.vbproj rename to EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.vbproj index ba372239..884e876d 100644 --- a/CVCncLib/CVCncLib.vbproj +++ b/EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.vbproj @@ -9,8 +9,8 @@ Library - CVCncLib - CVCncLib + EgwProxy.OsaiCncLib + EgwProxy.OsaiCncLib 512 Windows v4.0 @@ -49,7 +49,7 @@ true true .\ - CVCncLib.xml + EgwProxy.OsaiCncLib.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 x86 false @@ -60,7 +60,7 @@ true true .\ - CVCncLib.xml + EgwProxy.OsaiCncLib.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 false @@ -69,7 +69,7 @@ true true .\ - CVCncLib.xml + EgwProxy.OsaiCncLib.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 full x86 @@ -79,7 +79,7 @@ true bin\x86\Release\ - CVCncLib.xml + EgwProxy.OsaiCncLib.xml true 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 pdbonly @@ -188,436 +188,436 @@ Settings.Designer.vb Designer - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap - + Reference.svcmap diff --git a/EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.xml b/EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.xml new file mode 100644 index 00000000..27c9fdd3 --- /dev/null +++ b/EgwProxy.OsaiCncLib/EgwProxy.OsaiCncLib.xml @@ -0,0 +1,11418 @@ + + + + +EgwProxy.OsaiCncLib + + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Verifica se è installata la WINNBI e se è una versione compatibile con .NET + + Versione compatibile con framework .NET + + + + restituisce la versione installata di WINNBI + + + + + The INIReader class can read keys from and write keys to an INI file. + + + This class uses several Win32 API functions to read from and write to INI files. It will not work on Linux or FreeBSD. + + + + + The GetPrivateProfileInt function retrieves an integer associated with a key in the specified section of an initialization file. + + Pointer to a null-terminated string specifying the name of the section in the initialization file. + Pointer to the null-terminated string specifying the name of the key whose value is to be retrieved. This value is in the form of a string; the GetPrivateProfileInt function converts the string into an integer and returns the integer. + Specifies the default value to return if the key name cannot be found in the initialization file. + Pointer to a null-terminated string that specifies the name of the initialization file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory. + The return value is the integer equivalent of the string following the specified key name in the specified initialization file. If the key is not found, the return value is the specified default value. If the value of the key is less than zero, the return value is zero. + + + + The WritePrivateProfileString function copies a string into the specified section of an initialization file. + + Pointer to a null-terminated string containing the name of the section to which the string will be copied. If the section does not exist, it is created. The name of the section is case-independent; the string can be any combination of uppercase and lowercase letters. + Pointer to the null-terminated string containing the name of the key to be associated with a string. If the key does not exist in the specified section, it is created. If this parameter is NULL, the entire section, including all entries within the section, is deleted. + Pointer to a null-terminated string to be written to the file. If this parameter is NULL, the key pointed to by the lpKeyName parameter is deleted. + Pointer to a null-terminated string that specifies the name of the initialization file. + If the function successfully copies the string to the initialization file, the return value is nonzero; if the function fails, or if it flushes the cached version of the most recently accessed initialization file, the return value is zero. + + + + The GetPrivateProfileString function retrieves a string from the specified section in an initialization file. + + Pointer to a null-terminated string that specifies the name of the section containing the key name. If this parameter is NULL, the GetPrivateProfileString function copies all section names in the file to the supplied buffer. + Pointer to the null-terminated string specifying the name of the key whose associated string is to be retrieved. If this parameter is NULL, all key names in the section specified by the lpAppName parameter are copied to the buffer specified by the lpReturnedString parameter. + Pointer to a null-terminated default string. If the lpKeyName key cannot be found in the initialization file, GetPrivateProfileString copies the default string to the lpReturnedString buffer. This parameter cannot be NULL.
Avoid specifying a default string with trailing blank characters. The function inserts a null character in the lpReturnedString buffer to strip any trailing blanks.
+ Pointer to the buffer that receives the retrieved string. + Specifies the size, in TCHARs, of the buffer pointed to by the lpReturnedString parameter. + Pointer to a null-terminated string that specifies the name of the initialization file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory. + The return value is the number of characters copied to the buffer, not including the terminating null character. +
+ + + The GetPrivateProfileSectionNames function retrieves the names of all sections in an initialization file. + + Pointer to a buffer that receives the section names associated with the named file. The buffer is filled with one or more null-terminated strings; the last string is followed by a second null character. + Specifies the size, in TCHARs, of the buffer pointed to by the lpszReturnBuffer parameter. + Pointer to a null-terminated string that specifies the name of the initialization file. If this parameter is NULL, the function searches the Win.ini file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory. + The return value specifies the number of characters copied to the specified buffer, not including the terminating null character. If the buffer is not large enough to contain all the section names associated with the specified initialization file, the return value is equal to the length specified by nSize minus two. + + + + The WritePrivateProfileSection function replaces the keys and values for the specified section in an initialization file. + + Pointer to a null-terminated string specifying the name of the section in which data is written. This section name is typically the name of the calling application. + Pointer to a buffer containing the new key names and associated values that are to be written to the named section. + Pointer to a null-terminated string containing the name of the initialization file. If this parameter does not contain a full path for the file, the function searches the Windows directory for the file. If the file does not exist and lpFileName does not contain a full path, the function creates the file in the Windows directory. The function does not create a file if lpFileName contains the full path and file name of a file that does not exist. + If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero.
+
+ + Constructs a new IniReader instance. + Specifies the full path to the INI file (the file doesn't have to exist). + + + Gets or sets the full path to the INI file. + A String representing the full path to the INI file. + + + + Gets or sets the section you're working in. (aka 'the active section') + A String representing the section you're working in. + + + + Reads an Integer from the specified key of the specified section. + The section to search in. + The key from which to return the value. + The value to return if the specified key isn't found. + Returns the value of the specified section/key pair, or returns the default value if the specified section/key pair isn't found in the INI file. + + + Reads an Integer from the specified key of the specified section. + The section to search in. + The key from which to return the value. + Returns the value of the specified section/key pair, or returns 0 if the specified section/key pair isn't found in the INI file. + + + Reads an Integer from the specified key of the active section. + The key from which to return the value. + The section to search in. + Returns the value of the specified Key, or returns the default value if the specified Key isn't found in the active section of the INI file. + + + Reads an Integer from the specified key of the active section. + The key from which to return the value. + Returns the value of the specified key, or returns 0 if the specified key isn't found in the active section of the INI file. + + + Reads a String from the specified key of the specified section. + The section to search in. + The key from which to return the value. + The value to return if the specified key isn't found. + Returns the value of the specified section/key pair, or returns the default value if the specified section/key pair isn't found in the INI file. + + + Reads a String from the specified key of the specified section. + The section to search in. + The key from which to return the value. + Returns the value of the specified section/key pair, or returns an empty String if the specified section/key pair isn't found in the INI file. + + + Reads a String from the specified key of the active section. + The key from which to return the value. + Returns the value of the specified key, or returns an empty String if the specified key isn't found in the active section of the INI file. + + + Reads a Long from the specified key of the specified section. + The section to search in. + The key from which to return the value. + The value to return if the specified key isn't found. + Returns the value of the specified section/key pair, or returns the default value if the specified section/key pair isn't found in the INI file. + + + Reads a Long from the specified key of the specified section. + The section to search in. + The key from which to return the value. + Returns the value of the specified section/key pair, or returns 0 if the specified section/key pair isn't found in the INI file. + + + Reads a Long from the specified key of the active section. + The key from which to return the value. + The section to search in. + Returns the value of the specified key, or returns the default value if the specified key isn't found in the active section of the INI file. + + + Reads a Long from the specified key of the active section. + The key from which to return the value. + Returns the value of the specified Key, or returns 0 if the specified Key isn't found in the active section of the INI file. + + + Reads a Byte array from the specified key of the specified section. + The section to search in. + The key from which to return the value. + Returns the value of the specified section/key pair, or returns null (Nothing in VB.NET) if the specified section/key pair isn't found in the INI file. + + + Reads a Byte array from the specified key of the active section. + The key from which to return the value. + Returns the value of the specified key, or returns null (Nothing in VB.NET) if the specified key pair isn't found in the active section of the INI file. + + + Reads a Boolean from the specified key of the specified section. + The section to search in. + The key from which to return the value. + The value to return if the specified key isn't found. + Returns the value of the specified section/key pair, or returns the default value if the specified section/key pair isn't found in the INI file. + + + Reads a Boolean from the specified key of the specified section. + The section to search in. + The key from which to return the value. + Returns the value of the specified section/key pair, or returns false if the specified section/key pair isn't found in the INI file. + + + Reads a Boolean from the specified key of the specified section. + The key from which to return the value. + The value to return if the specified key isn't found. + Returns the value of the specified key pair, or returns the default value if the specified key isn't found in the active section of the INI file. + + + Reads a Boolean from the specified key of the specified section. + The key from which to return the value. + Returns the value of the specified key, or returns false if the specified key isn't found in the active section of the INI file. + + + Writes an Integer to the specified key in the specified section. + The section to write in. + The key to write to. + The value to write. + Returns true if the function succeeds, false otherwise. + + + Writes an Integer to the specified key in the active section. + The key to write to. + The value to write. + Returns true if the function succeeds, false otherwise. + + + Writes a String to the specified key in the specified section. + Specifies the section to write in. + Specifies the key to write to. + Specifies the value to write. + Returns true if the function succeeds, false otherwise. + + + Writes a String to the specified key in the active section. + The key to write to. + The value to write. + Returns true if the function succeeds, false otherwise. + + + Writes a Long to the specified key in the specified section. + The section to write in. + The key to write to. + The value to write. + Returns true if the function succeeds, false otherwise. + + + Writes a Long to the specified key in the active section. + The key to write to. + The value to write. + Returns true if the function succeeds, false otherwise. + + + Writes a Byte array to the specified key in the specified section. + The section to write in. + The key to write to. + The value to write. + Returns true if the function succeeds, false otherwise. + + + Writes a Byte array to the specified key in the active section. + The key to write to. + The value to write. + Returns true if the function succeeds, false otherwise. + + + Writes a Byte array to the specified key in the specified section. + The section to write in. + The key to write to. + The value to write. + An offset in value. + The number of elements of value to convert. + Returns true if the function succeeds, false otherwise. + + + Writes a Boolean to the specified key in the specified section. + The section to write in. + The key to write to. + The value to write. + Returns true if the function succeeds, false otherwise. + + + Writes a Boolean to the specified key in the active section. + The key to write to. + The value to write. + Returns true if the function succeeds, false otherwise. + + + Deletes a key from the specified section. + The section to delete from. + The key to delete. + Returns true if the function succeeds, false otherwise. + + + Deletes a key from the active section. + The key to delete. + Returns true if the function succeeds, false otherwise. + + + + Deletes a section from an INI file. + The section to delete. + Returns true if the function succeeds, false otherwise. + + + + Retrieves a list of all available sections in the INI file. + + + Returns an ArrayList with all available sections. + + + + + Holds the full path to the INI file. + + + + + Holds the active section name + + + + + The maximum number of bytes in a section buffer. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
diff --git a/CVCncLib/FrmMain.Designer.vb b/EgwProxy.OsaiCncLib/FrmMain.Designer.vb similarity index 100% rename from CVCncLib/FrmMain.Designer.vb rename to EgwProxy.OsaiCncLib/FrmMain.Designer.vb diff --git a/CVCncLib/FrmMain.resx b/EgwProxy.OsaiCncLib/FrmMain.resx similarity index 100% rename from CVCncLib/FrmMain.resx rename to EgwProxy.OsaiCncLib/FrmMain.resx diff --git a/CVCncLib/FrmMain.vb b/EgwProxy.OsaiCncLib/FrmMain.vb similarity index 100% rename from CVCncLib/FrmMain.vb rename to EgwProxy.OsaiCncLib/FrmMain.vb diff --git a/CVCncLib/Messages/testSam.msg b/EgwProxy.OsaiCncLib/Messages/testSam.msg similarity index 100% rename from CVCncLib/Messages/testSam.msg rename to EgwProxy.OsaiCncLib/Messages/testSam.msg diff --git a/CVCncLib/Modules/CndexLinkUserVB6.vb b/EgwProxy.OsaiCncLib/Modules/CndexLinkUserVB6.vb similarity index 100% rename from CVCncLib/Modules/CndexLinkUserVB6.vb rename to EgwProxy.OsaiCncLib/Modules/CndexLinkUserVB6.vb diff --git a/CVCncLib/Modules/ComCNOsai.vb b/EgwProxy.OsaiCncLib/Modules/ComCNOsai.vb similarity index 100% rename from CVCncLib/Modules/ComCNOsai.vb rename to EgwProxy.OsaiCncLib/Modules/ComCNOsai.vb diff --git a/CVCncLib/Modules/ComCNOsaiVB6.vb b/EgwProxy.OsaiCncLib/Modules/ComCNOsaiVB6.vb similarity index 100% rename from CVCncLib/Modules/ComCNOsaiVB6.vb rename to EgwProxy.OsaiCncLib/Modules/ComCNOsaiVB6.vb diff --git a/CVCncLib/Modules/ComCnOsaiOpen_Series.vb b/EgwProxy.OsaiCncLib/Modules/ComCnOsaiOpen_Series.vb similarity index 100% rename from CVCncLib/Modules/ComCnOsaiOpen_Series.vb rename to EgwProxy.OsaiCncLib/Modules/ComCnOsaiOpen_Series.vb diff --git a/CVCncLib/Modules/IniRead.vb b/EgwProxy.OsaiCncLib/Modules/IniRead.vb similarity index 100% rename from CVCncLib/Modules/IniRead.vb rename to EgwProxy.OsaiCncLib/Modules/IniRead.vb diff --git a/CVCncLib/Modules/IniReader.vb b/EgwProxy.OsaiCncLib/Modules/IniReader.vb similarity index 100% rename from CVCncLib/Modules/IniReader.vb rename to EgwProxy.OsaiCncLib/Modules/IniReader.vb diff --git a/CVCncLib/Modules/L_File_aux.vb b/EgwProxy.OsaiCncLib/Modules/L_File_aux.vb similarity index 100% rename from CVCncLib/Modules/L_File_aux.vb rename to EgwProxy.OsaiCncLib/Modules/L_File_aux.vb diff --git a/CVCncLib/Modules/Log.vb b/EgwProxy.OsaiCncLib/Modules/Log.vb similarity index 100% rename from CVCncLib/Modules/Log.vb rename to EgwProxy.OsaiCncLib/Modules/Log.vb diff --git a/CVCncLib/Modules/M_aspect.vb b/EgwProxy.OsaiCncLib/Modules/M_aspect.vb similarity index 100% rename from CVCncLib/Modules/M_aspect.vb rename to EgwProxy.OsaiCncLib/Modules/M_aspect.vb diff --git a/CVCncLib/Modules/M_cn_connection.vb b/EgwProxy.OsaiCncLib/Modules/M_cn_connection.vb similarity index 100% rename from CVCncLib/Modules/M_cn_connection.vb rename to EgwProxy.OsaiCncLib/Modules/M_cn_connection.vb diff --git a/CVCncLib/Modules/M_machine.vb b/EgwProxy.OsaiCncLib/Modules/M_machine.vb similarity index 100% rename from CVCncLib/Modules/M_machine.vb rename to EgwProxy.OsaiCncLib/Modules/M_machine.vb diff --git a/CVCncLib/Modules/M_state_machine.vb b/EgwProxy.OsaiCncLib/Modules/M_state_machine.vb similarity index 100% rename from CVCncLib/Modules/M_state_machine.vb rename to EgwProxy.OsaiCncLib/Modules/M_state_machine.vb diff --git a/CVCncLib/Modules/Message.vb b/EgwProxy.OsaiCncLib/Modules/Message.vb similarity index 100% rename from CVCncLib/Modules/Message.vb rename to EgwProxy.OsaiCncLib/Modules/Message.vb diff --git a/CVCncLib/My Project/Application.Designer.vb b/EgwProxy.OsaiCncLib/My Project/Application.Designer.vb similarity index 100% rename from CVCncLib/My Project/Application.Designer.vb rename to EgwProxy.OsaiCncLib/My Project/Application.Designer.vb diff --git a/CVCncLib/My Project/Application.myapp b/EgwProxy.OsaiCncLib/My Project/Application.myapp similarity index 100% rename from CVCncLib/My Project/Application.myapp rename to EgwProxy.OsaiCncLib/My Project/Application.myapp diff --git a/CVCncLib/My Project/AssemblyInfo.vb b/EgwProxy.OsaiCncLib/My Project/AssemblyInfo.vb similarity index 100% rename from CVCncLib/My Project/AssemblyInfo.vb rename to EgwProxy.OsaiCncLib/My Project/AssemblyInfo.vb diff --git a/CVCncLib/My Project/Resources.Designer.vb b/EgwProxy.OsaiCncLib/My Project/Resources.Designer.vb similarity index 95% rename from CVCncLib/My Project/Resources.Designer.vb rename to EgwProxy.OsaiCncLib/My Project/Resources.Designer.vb index 19f3b71e..4dce6551 100644 --- a/CVCncLib/My Project/Resources.Designer.vb +++ b/EgwProxy.OsaiCncLib/My Project/Resources.Designer.vb @@ -39,7 +39,7 @@ Namespace My.Resources Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager Get If Object.ReferenceEquals(resourceMan, Nothing) Then - Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("CVCncLib.Resources", GetType(Resources).Assembly) + Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("EgwProxy.OsaiCncLib.Resources", GetType(Resources).Assembly) resourceMan = temp End If Return resourceMan diff --git a/CVCncLib/My Project/Resources.resx b/EgwProxy.OsaiCncLib/My Project/Resources.resx similarity index 100% rename from CVCncLib/My Project/Resources.resx rename to EgwProxy.OsaiCncLib/My Project/Resources.resx diff --git a/CVCncLib/My Project/Settings.Designer.vb b/EgwProxy.OsaiCncLib/My Project/Settings.Designer.vb similarity index 96% rename from CVCncLib/My Project/Settings.Designer.vb rename to EgwProxy.OsaiCncLib/My Project/Settings.Designer.vb index 3cbe3ed2..397efe16 100644 --- a/CVCncLib/My Project/Settings.Designer.vb +++ b/EgwProxy.OsaiCncLib/My Project/Settings.Designer.vb @@ -84,9 +84,9 @@ Namespace My Friend Module MySettingsProperty _ - Friend ReadOnly Property Settings() As Global.CVCncLib.My.MySettings + Friend ReadOnly Property Settings() As Global.EgwProxy.OsaiCncLib.My.MySettings Get - Return Global.CVCncLib.My.MySettings.Default + Return Global.EgwProxy.OsaiCncLib.My.MySettings.Default End Get End Property End Module diff --git a/CVCncLib/My Project/Settings.settings b/EgwProxy.OsaiCncLib/My Project/Settings.settings similarity index 100% rename from CVCncLib/My Project/Settings.settings rename to EgwProxy.OsaiCncLib/My Project/Settings.settings diff --git a/CVCncLib/My Project/app.manifest b/EgwProxy.OsaiCncLib/My Project/app.manifest similarity index 100% rename from CVCncLib/My Project/app.manifest rename to EgwProxy.OsaiCncLib/My Project/app.manifest diff --git a/CVCncLib/S10DLLPRJ.dll b/EgwProxy.OsaiCncLib/S10DLLPRJ.dll similarity index 100% rename from CVCncLib/S10DLLPRJ.dll rename to EgwProxy.OsaiCncLib/S10DLLPRJ.dll diff --git a/CVCncLib/S10WLK32.DLL b/EgwProxy.OsaiCncLib/S10WLK32.DLL similarity index 100% rename from CVCncLib/S10WLK32.DLL rename to EgwProxy.OsaiCncLib/S10WLK32.DLL diff --git a/CVCncLib/S10WLK32.LIB b/EgwProxy.OsaiCncLib/S10WLK32.LIB similarity index 100% rename from CVCncLib/S10WLK32.LIB rename to EgwProxy.OsaiCncLib/S10WLK32.LIB diff --git a/CVCncLib/Service References/OPENcontrol.wsdl b/EgwProxy.OsaiCncLib/Service References/OPENcontrol.wsdl similarity index 100% rename from CVCncLib/Service References/OPENcontrol.wsdl rename to EgwProxy.OsaiCncLib/Service References/OPENcontrol.wsdl diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.AxesRefR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.AxesRefR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.AxesRefR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.AxesRefR.datasource index ca0297ba..3b1d2396 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.AxesRefR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.AxesRefR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.AxesRefR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.AxesRefR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootModeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootModeR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootModeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootModeR.datasource index 4991ca2b..a90d038f 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootModeR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootModeR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.BootModeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.BootModeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootPhaseEnquiryR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootPhaseEnquiryR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootPhaseEnquiryR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootPhaseEnquiryR.datasource index 46d39863..159a0e8a 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootPhaseEnquiryR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootPhaseEnquiryR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.BootPhaseEnquiryR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.BootPhaseEnquiryR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootRebootR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootRebootR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootRebootR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootRebootR.datasource index 99277a3d..84b43038 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootRebootR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootRebootR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.BootRebootR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.BootRebootR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootShutDownR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootShutDownR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootShutDownR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootShutDownR.datasource index 31027495..d4b8b810 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootShutDownR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.BootShutDownR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.BootShutDownR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.BootShutDownR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.CheckHistoryR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.CheckHistoryR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.CheckHistoryR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.CheckHistoryR.datasource index 9a87483b..0ba1827d 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.CheckHistoryR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.CheckHistoryR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.CheckHistoryR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.CheckHistoryR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.CycleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.CycleR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.CycleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.CycleR.datasource index 5963f155..491b0890 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.CycleR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.CycleR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.CycleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.CycleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncDataR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncDataR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncDataR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncDataR.datasource index aeff0c3f..384538b8 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncDataR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncDataR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.DncDataR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.DncDataR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncEofR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncEofR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncEofR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncEofR.datasource index dccb9ac3..2a711699 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncEofR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncEofR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.DncEofR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.DncEofR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncInitR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncInitR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncInitR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncInitR.datasource index b5df1214..8222350f 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncInitR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncInitR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.DncInitR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.DncInitR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncStopR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncStopR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncStopR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncStopR.datasource index 52654fa6..70077606 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncStopR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.DncStopR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.DncStopR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.DncStopR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseExR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseExR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseExR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseExR.datasource index 16edeb45..9a4da569 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseExR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseExR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.EseExR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.EseExR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseR.datasource index 456e2a7f..5337b097 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.EseR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.EseR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.EseR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ExeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ExeR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ExeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ExeR.datasource index 8ae1711d..d192bbc7 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ExeR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ExeR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ExeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ExeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetActivePartProgramR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetActivePartProgramR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetActivePartProgramR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetActivePartProgramR.datasource index 47228718..4d8286d1 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetActivePartProgramR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetActivePartProgramR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetActivePartProgramR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetActivePartProgramR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAvailableCustomEventsR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAvailableCustomEventsR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAvailableCustomEventsR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAvailableCustomEventsR.datasource index eab8e4dc..9d86fb2b 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAvailableCustomEventsR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAvailableCustomEventsR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetAvailableCustomEventsR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetAvailableCustomEventsR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxOriginNumR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxOriginNumR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxOriginNumR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxOriginNumR.datasource index ecdd7e40..3fda8b7f 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxOriginNumR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxOriginNumR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetAxOriginNumR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetAxOriginNumR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesInfo3R.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesInfo3R.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesInfo3R.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesInfo3R.datasource index db595874..0b547626 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesInfo3R.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesInfo3R.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetAxesInfo3R, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetAxesInfo3R, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesPositionR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesPositionR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesPositionR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesPositionR.datasource index 460499a6..db0789e7 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesPositionR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetAxesPositionR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetAxesPositionR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetAxesPositionR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBinaryFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBinaryFileR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBinaryFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBinaryFileR.datasource index e5e59d37..682d3ef1 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBinaryFileR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBinaryFileR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetBinaryFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetBinaryFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBlkNumR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBlkNumR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBlkNumR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBlkNumR.datasource index 2c4da2da..62663a0f 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBlkNumR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetBlkNumR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetBlkNumR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetBlkNumR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCNCRegKeyR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCNCRegKeyR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCNCRegKeyR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCNCRegKeyR.datasource index 41b77be2..db6aa03d 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCNCRegKeyR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCNCRegKeyR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetCNCRegKeyR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetCNCRegKeyR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCodeNumberR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCodeNumberR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCodeNumberR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCodeNumberR.datasource index 1f7e96b5..d5ea723a 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCodeNumberR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetCodeNumberR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetCodeNumberR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetCodeNumberR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetDateTimeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetDateTimeR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetDateTimeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetDateTimeR.datasource index ec015640..90b85744 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetDateTimeR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetDateTimeR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetDateTimeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetDateTimeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetFileR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetFileR.datasource index b5b7d8f8..06c5dec7 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetFileR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetFileR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetGCodeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetGCodeR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetGCodeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetGCodeR.datasource index 92554e17..e543fd4e 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetGCodeR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetGCodeR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetGCodeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetGCodeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetHWKeyR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetHWKeyR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetHWKeyR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetHWKeyR.datasource index 264e7942..62f68a4b 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetHWKeyR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetHWKeyR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetHWKeyR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetHWKeyR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMCodeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMCodeR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMCodeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMCodeR.datasource index 2b37226a..b0c68403 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMCodeR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMCodeR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetMCodeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetMCodeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMarkerInfoR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMarkerInfoR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMarkerInfoR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMarkerInfoR.datasource index d03cc61e..fcec22ca 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMarkerInfoR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetMarkerInfoR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetMarkerInfoR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetMarkerInfoR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo1R.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo1R.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo1R.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo1R.datasource index d3b75c59..b507f84d 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo1R.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo1R.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetNcInfo1R, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetNcInfo1R, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo2R.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo2R.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo2R.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo2R.datasource index 708db57b..f82938eb 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo2R.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetNcInfo2R.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetNcInfo2R, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetNcInfo2R, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOffsetTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOffsetTabRecordIIR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOffsetTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOffsetTabRecordIIR.datasource index 91655017..16b83677 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOffsetTabRecordIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOffsetTabRecordIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetOffsetTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetOffsetTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOptionsR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOptionsR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOptionsR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOptionsR.datasource index 6388a324..5aee3185 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOptionsR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOptionsR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetOptionsR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetOptionsR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOriginTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOriginTabRecordIIR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOriginTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOriginTabRecordIIR.datasource index 6914d8f6..f0814f60 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOriginTabRecordIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetOriginTabRecordIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetOriginTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetOriginTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPTechSizesR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPTechSizesR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPTechSizesR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPTechSizesR.datasource index c2e83688..42b4e881 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPTechSizesR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPTechSizesR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetPTechSizesR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetPTechSizesR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPartProgramLinesR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPartProgramLinesR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPartProgramLinesR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPartProgramLinesR.datasource index cd697af5..1eee7096 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPartProgramLinesR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetPartProgramLinesR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetPartProgramLinesR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetPartProgramLinesR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcInInputR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcInInputR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcInInputR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcInInputR.datasource index df080cb2..207b95c9 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcInInputR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcInInputR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetProcInInputR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetProcInInputR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarDoubleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarDoubleR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarDoubleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarDoubleR.datasource index b4eb0c0a..883f4e98 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarDoubleR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarDoubleR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetProcVarDoubleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetProcVarDoubleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarWordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarWordR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarWordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarWordR.datasource index 5d11f017..1187568f 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarWordR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcVarWordR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetProcVarWordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetProcVarWordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessConfNumR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessConfNumR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessConfNumR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessConfNumR.datasource index 3921483a..4107d048 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessConfNumR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessConfNumR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetProcessConfNumR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetProcessConfNumR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessStatusR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessStatusR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessStatusR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessStatusR.datasource index d39073ea..fbd4cf60 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessStatusR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetProcessStatusR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetProcessStatusR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetProcessStatusR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSelectedProcessR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSelectedProcessR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSelectedProcessR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSelectedProcessR.datasource index 35c96767..c0eaf612 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSelectedProcessR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSelectedProcessR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetSelectedProcessR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetSelectedProcessR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSerialNumberR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSerialNumberR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSerialNumberR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSerialNumberR.datasource index e1e2ab3f..29d8cd23 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSerialNumberR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSerialNumberR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetSerialNumberR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetSerialNumberR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetServoParR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetServoParR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetServoParR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetServoParR.datasource index 3b214c05..1c2d6e56 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetServoParR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetServoParR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetServoParR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetServoParR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSysTickR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSysTickR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSysTickR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSysTickR.datasource index d59c8eaf..2dc11e96 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSysTickR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetSysTickR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetSysTickR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetSysTickR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolNamesR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolNamesR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolNamesR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolNamesR.datasource index 503a66ed..f6fd4461 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolNamesR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolNamesR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetToolNamesR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetToolNamesR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolTabRecordIIR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolTabRecordIIR.datasource index d8bdf874..107e8299 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolTabRecordIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetToolTabRecordIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetToolTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetToolTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetUserTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetUserTabRecordIIR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetUserTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetUserTabRecordIIR.datasource index 7493900a..e9c7c0b5 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetUserTabRecordIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetUserTabRecordIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetUserTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetUserTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarJOGR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarJOGR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarJOGR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarJOGR.datasource index 9d8e6519..e2f0376d 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarJOGR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarJOGR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetVarJOGR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetVarJOGR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarRCMR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarRCMR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarRCMR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarRCMR.datasource index 4584280f..7548dad5 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarRCMR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.GetVarRCMR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.GetVarRCMR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.GetVarRCMR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.HoldR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.HoldR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.HoldR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.HoldR.datasource index 8a76cff8..c6501019 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.HoldR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.HoldR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.HoldR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.HoldR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LoadPTechR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LoadPTechR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LoadPTechR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LoadPTechR.datasource index 93a7d935..c9398e85 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LoadPTechR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LoadPTechR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LoadPTechR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LoadPTechR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LockTableIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LockTableIIR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LockTableIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LockTableIIR.datasource index cdca1ff2..ac762b69 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LockTableIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LockTableIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LockTableIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LockTableIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSAddDriveR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSAddDriveR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSAddDriveR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSAddDriveR.datasource index 3244391c..f85045c8 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSAddDriveR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSAddDriveR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSAddDriveR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSAddDriveR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSChangeFileAttribR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSChangeFileAttribR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSChangeFileAttribR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSChangeFileAttribR.datasource index 2169a272..5f5c102d 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSChangeFileAttribR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSChangeFileAttribR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSChangeFileAttribR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSChangeFileAttribR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCloseFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCloseFileR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCloseFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCloseFileR.datasource index 78548faa..6a59616b 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCloseFileR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCloseFileR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSCloseFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSCloseFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCopyFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCopyFileR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCopyFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCopyFileR.datasource index 15355771..bd925311 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCopyFileR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCopyFileR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSCopyFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSCopyFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateDirR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateDirR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateDirR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateDirR.datasource index 6a24baa6..8fb87f6d 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateDirR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateDirR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSCreateDirR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSCreateDirR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateFileR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateFileR.datasource index 7c0701b8..fec46a80 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateFileR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSCreateFileR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSCreateFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSCreateFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindCloseR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindCloseR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindCloseR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindCloseR.datasource index e3ed572a..23ab8a41 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindCloseR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindCloseR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSFindCloseR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSFindCloseR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindFirstR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindFirstR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindFirstR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindFirstR.datasource index 55821e4e..a41884ba 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindFirstR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindFirstR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSFindFirstR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSFindFirstR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindNextR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindNextR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindNextR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindNextR.datasource index 8760da06..fdb31016 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindNextR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSFindNextR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSFindNextR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSFindNextR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDriveListR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDriveListR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDriveListR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDriveListR.datasource index 8532507e..9b7b67e3 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDriveListR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDriveListR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSGetDriveListR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSGetDriveListR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDrivePathR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDrivePathR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDrivePathR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDrivePathR.datasource index 2ef784e7..4bbe87c1 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDrivePathR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetDrivePathR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSGetDrivePathR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSGetDrivePathR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileAttribR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileAttribR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileAttribR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileAttribR.datasource index 7d07fa7d..1cf60e03 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileAttribR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileAttribR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSGetFileAttribR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSGetFileAttribR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileSizeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileSizeR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileSizeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileSizeR.datasource index 8806d42b..3723424a 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileSizeR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetFileSizeR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSGetFileSizeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSGetFileSizeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetHiddenDriveListR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetHiddenDriveListR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetHiddenDriveListR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetHiddenDriveListR.datasource index 7a569632..719673fc 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetHiddenDriveListR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetHiddenDriveListR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSGetHiddenDriveListR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSGetHiddenDriveListR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetInfoR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetInfoR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetInfoR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetInfoR.datasource index 22a42bc0..f57e1ad7 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetInfoR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetInfoR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSGetInfoR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSGetInfoR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetNumDriveR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetNumDriveR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetNumDriveR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetNumDriveR.datasource index 25629217..a137dbc1 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetNumDriveR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetNumDriveR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSGetNumDriveR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSGetNumDriveR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetSecurityLevelR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetSecurityLevelR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetSecurityLevelR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetSecurityLevelR.datasource index 1d07a5fe..47cd4355 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetSecurityLevelR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSGetSecurityLevelR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSGetSecurityLevelR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSGetSecurityLevelR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSLongFileNamesR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSLongFileNamesR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSLongFileNamesR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSLongFileNamesR.datasource index 8dc8e5dd..f79a2a69 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSLongFileNamesR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSLongFileNamesR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSLongFileNamesR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSLongFileNamesR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSOpenFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSOpenFileR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSOpenFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSOpenFileR.datasource index ee42390b..80b5c7ef 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSOpenFileR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSOpenFileR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSOpenFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSOpenFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReadRecordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReadRecordR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReadRecordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReadRecordR.datasource index 60f6f2a5..07627568 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReadRecordR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReadRecordR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSReadRecordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSReadRecordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReloadDriveListR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReloadDriveListR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReloadDriveListR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReloadDriveListR.datasource index 49bcf160..d3fa1363 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReloadDriveListR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSReloadDriveListR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSReloadDriveListR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSReloadDriveListR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDirR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDirR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDirR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDirR.datasource index 65cbfecd..c143a649 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDirR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDirR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSRemoveDirR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSRemoveDirR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDriveR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDriveR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDriveR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDriveR.datasource index 53083997..f180267c 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDriveR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveDriveR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSRemoveDriveR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSRemoveDriveR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveFileR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveFileR.datasource index 7f186924..80900e5f 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveFileR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRemoveFileR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSRemoveFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSRemoveFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRenameR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRenameR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRenameR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRenameR.datasource index 2dcecdc9..c84ced39 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRenameR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSRenameR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSRenameR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSRenameR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetFileAttribR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetFileAttribR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetFileAttribR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetFileAttribR.datasource index a7036661..bf67c9b1 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetFileAttribR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetFileAttribR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSSetFileAttribR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSSetFileAttribR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetSecurityLevelR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetSecurityLevelR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetSecurityLevelR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetSecurityLevelR.datasource index 515c92af..7b31e87b 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetSecurityLevelR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSSetSecurityLevelR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSSetSecurityLevelR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSSetSecurityLevelR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSWriteRecordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSWriteRecordR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSWriteRecordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSWriteRecordR.datasource index 5c97961b..4918b521 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSWriteRecordR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.LogFSWriteRecordR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.LogFSWriteRecordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.LogFSWriteRecordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ManagePartProgramR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ManagePartProgramR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ManagePartProgramR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ManagePartProgramR.datasource index 1bf3a033..13cc907a 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ManagePartProgramR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ManagePartProgramR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ManagePartProgramR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ManagePartProgramR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonAddVariableR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonAddVariableR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonAddVariableR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonAddVariableR.datasource index 93737481..e8644ff9 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonAddVariableR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonAddVariableR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.MonAddVariableR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.MonAddVariableR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonCloseChannelR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonCloseChannelR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonCloseChannelR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonCloseChannelR.datasource index 56308a73..f628a580 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonCloseChannelR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonCloseChannelR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.MonCloseChannelR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.MonCloseChannelR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonDeleteVariableR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonDeleteVariableR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonDeleteVariableR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonDeleteVariableR.datasource index 916916fd..887bd94a 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonDeleteVariableR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonDeleteVariableR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.MonDeleteVariableR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.MonDeleteVariableR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonGetVariableR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonGetVariableR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonGetVariableR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonGetVariableR.datasource index 371d70f0..5775b9cf 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonGetVariableR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonGetVariableR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.MonGetVariableR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.MonGetVariableR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonOpenChannelR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonOpenChannelR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonOpenChannelR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonOpenChannelR.datasource index 21591218..78562781 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonOpenChannelR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonOpenChannelR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.MonOpenChannelR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.MonOpenChannelR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStartSamplingR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStartSamplingR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStartSamplingR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStartSamplingR.datasource index df232144..602e916f 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStartSamplingR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStartSamplingR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.MonStartSamplingR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.MonStartSamplingR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStopSamplingR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStopSamplingR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStopSamplingR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStopSamplingR.datasource index 976bfcb2..08dac7a8 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStopSamplingR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.MonStopSamplingR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.MonStopSamplingR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.MonStopSamplingR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutBinaryFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutBinaryFileR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutBinaryFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutBinaryFileR.datasource index 2fa382fc..71763e34 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutBinaryFileR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutBinaryFileR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.PutBinaryFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.PutBinaryFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutFileR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutFileR.datasource index 6688cc5c..cee97aa5 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutFileR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.PutFileR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.PutFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.PutFileR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentAnomalyMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentAnomalyMsgR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentAnomalyMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentAnomalyMsgR.datasource index 5cf46bce..c8b60441 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentAnomalyMsgR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentAnomalyMsgR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadCurrentAnomalyMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadCurrentAnomalyMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentEmergMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentEmergMsgR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentEmergMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentEmergMsgR.datasource index 11d64f66..71599592 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentEmergMsgR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentEmergMsgR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadCurrentEmergMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadCurrentEmergMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentErrorMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentErrorMsgR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentErrorMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentErrorMsgR.datasource index 5a337806..5947e47c 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentErrorMsgR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadCurrentErrorMsgR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadCurrentErrorMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadCurrentErrorMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadErrMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadErrMsgR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadErrMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadErrMsgR.datasource index bf284190..f53f595a 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadErrMsgR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadErrMsgR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadErrMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadErrMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryAnomalyMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryAnomalyMsgR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryAnomalyMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryAnomalyMsgR.datasource index cfcd921e..3e93edff 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryAnomalyMsgR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryAnomalyMsgR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadHistoryAnomalyMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadHistoryAnomalyMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryEmergMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryEmergMsgR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryEmergMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryEmergMsgR.datasource index 1fe5831e..aa3747c2 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryEmergMsgR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryEmergMsgR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadHistoryEmergMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadHistoryEmergMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryErrorMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryErrorMsgR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryErrorMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryErrorMsgR.datasource index 42913927..65e0ae32 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryErrorMsgR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryErrorMsgR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadHistoryErrorMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadHistoryErrorMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryLogMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryLogMsgR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryLogMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryLogMsgR.datasource index 6a586bb1..06e105b0 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryLogMsgR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadHistoryLogMsgR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadHistoryLogMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadHistoryLogMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadPartProgramMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadPartProgramMsgR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadPartProgramMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadPartProgramMsgR.datasource index e612d191..3a54ebfa 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadPartProgramMsgR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadPartProgramMsgR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadPartProgramMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadPartProgramMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadRemapDefinitionsR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadRemapDefinitionsR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadRemapDefinitionsR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadRemapDefinitionsR.datasource index 608c2d3f..614dbb00 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadRemapDefinitionsR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadRemapDefinitionsR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadRemapDefinitionsR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadRemapDefinitionsR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarDoubleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarDoubleR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarDoubleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarDoubleR.datasource index aead80eb..529f88c1 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarDoubleR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarDoubleR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadVarDoubleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadVarDoubleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarTextR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarTextR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarTextR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarTextR.datasource index e3f2a2de..0c744d3d 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarTextR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarTextR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadVarTextR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadVarTextR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarWordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarWordR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarWordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarWordR.datasource index 8f6b3980..4c7e22e2 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarWordR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadVarWordR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadVarWordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadVarWordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadWarningMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadWarningMsgR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadWarningMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadWarningMsgR.datasource index 036d037d..eb1ceac0 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadWarningMsgR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ReadWarningMsgR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ReadWarningMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ReadWarningMsgR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetR.datasource index 26944c5c..c3912684 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ResetR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ResetR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetSingleTableIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetSingleTableIIR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetSingleTableIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetSingleTableIIR.datasource index 358a731a..8a5984c6 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetSingleTableIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.ResetSingleTableIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.ResetSingleTableIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.ResetSingleTableIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreBackupMemoryR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreBackupMemoryR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreBackupMemoryR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreBackupMemoryR.datasource index eb247738..46382826 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreBackupMemoryR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreBackupMemoryR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.RestoreBackupMemoryR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.RestoreBackupMemoryR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreSingleTableR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreSingleTableR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreSingleTableR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreSingleTableR.datasource index cf28a949..2cbbe4d6 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreSingleTableR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.RestoreSingleTableR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.RestoreSingleTableR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.RestoreSingleTableR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveBackupMemoryR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveBackupMemoryR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveBackupMemoryR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveBackupMemoryR.datasource index f9ac0533..3ab46348 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveBackupMemoryR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveBackupMemoryR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SaveBackupMemoryR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SaveBackupMemoryR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveSingleTableR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveSingleTableR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveSingleTableR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveSingleTableR.datasource index 7ac81922..791ca115 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveSingleTableR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveSingleTableR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SaveSingleTableR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SaveSingleTableR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveTablesR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveTablesR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveTablesR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveTablesR.datasource index 72e627c8..e902d0ac 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveTablesR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SaveTablesR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SaveTablesR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SaveTablesR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramFromDriveR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramFromDriveR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramFromDriveR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramFromDriveR.datasource index 8e6dc51f..fafebd0f 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramFromDriveR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramFromDriveR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SelectPartProgramFromDriveR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SelectPartProgramFromDriveR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramR.datasource index 6980d6be..ea289a46 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectPartProgramR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SelectPartProgramR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SelectPartProgramR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcAxisR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcAxisR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcAxisR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcAxisR.datasource index f373ac03..1bb9dc57 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcAxisR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcAxisR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SelectProcAxisR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SelectProcAxisR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcessR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcessR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcessR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcessR.datasource index 6b413b8f..37be2334 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcessR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SelectProcessR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SelectProcessR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SelectProcessR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetDateTimeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetDateTimeR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetDateTimeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetDateTimeR.datasource index 11945a7d..492f0706 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetDateTimeR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetDateTimeR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetDateTimeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetDateTimeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedManOverR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedManOverR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedManOverR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedManOverR.datasource index cd6a66b6..063e4e6e 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedManOverR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedManOverR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetFeedManOverR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetFeedManOverR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRapidOverR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRapidOverR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRapidOverR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRapidOverR.datasource index 8d6c1f33..bb6fadba 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRapidOverR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRapidOverR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetFeedRapidOverR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetFeedRapidOverR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRateOverR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRateOverR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRateOverR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRateOverR.datasource index 401de745..74d318bd 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRateOverR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetFeedRateOverR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetFeedRateOverR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetFeedRateOverR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetIpAddressR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetIpAddressR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetIpAddressR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetIpAddressR.datasource index 33adfe0e..5083b205 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetIpAddressR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetIpAddressR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetIpAddressR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetIpAddressR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetManMovDirectionR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetManMovDirectionR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetManMovDirectionR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetManMovDirectionR.datasource index 9d998ca6..22b28551 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetManMovDirectionR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetManMovDirectionR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetManMovDirectionR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetManMovDirectionR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetMdiStringR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetMdiStringR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetMdiStringR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetMdiStringR.datasource index 4c73a9e3..809f8651 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetMdiStringR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetMdiStringR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetMdiStringR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetMdiStringR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOffsetTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOffsetTabRecordIIR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOffsetTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOffsetTabRecordIIR.datasource index 2031c41a..4155f2ac 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOffsetTabRecordIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOffsetTabRecordIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetOffsetTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetOffsetTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOriginTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOriginTabRecordIIR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOriginTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOriginTabRecordIIR.datasource index 88718496..9d6c6ff3 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOriginTabRecordIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetOriginTabRecordIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetOriginTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetOriginTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarDoubleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarDoubleR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarDoubleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarDoubleR.datasource index 07aa5d88..5aa975a9 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarDoubleR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarDoubleR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetProcVarDoubleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetProcVarDoubleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarWordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarWordR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarWordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarWordR.datasource index e0d7a853..420a7be6 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarWordR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcVarWordR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetProcVarWordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetProcVarWordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcessModeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcessModeR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcessModeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcessModeR.datasource index 8c9c7aaf..587d2b5e 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcessModeR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetProcessModeR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetProcessModeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetProcessModeR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetServoParR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetServoParR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetServoParR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetServoParR.datasource index 9d3a4e9c..d7238127 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetServoParR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetServoParR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetServoParR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetServoParR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetSpeedRateOverR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetSpeedRateOverR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetSpeedRateOverR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetSpeedRateOverR.datasource index 40f175a2..4e5c0a55 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetSpeedRateOverR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetSpeedRateOverR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetSpeedRateOverR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetSpeedRateOverR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetToolTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetToolTabRecordIIR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetToolTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetToolTabRecordIIR.datasource index 6402fd88..661f8d52 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetToolTabRecordIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetToolTabRecordIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetToolTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetToolTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetUserTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetUserTabRecordIIR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetUserTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetUserTabRecordIIR.datasource index f2ca7797..96bdc53e 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetUserTabRecordIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetUserTabRecordIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetUserTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetUserTabRecordIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarJOGR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarJOGR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarJOGR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarJOGR.datasource index ba8e3a7e..694c86d6 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarJOGR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarJOGR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetVarJOGR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetVarJOGR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarRCMR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarRCMR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarRCMR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarRCMR.datasource index c68bed3e..993db330 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarRCMR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarRCMR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetVarRCMR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetVarRCMR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarUASR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarUASR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarUASR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarUASR.datasource index a56c3038..d3292cf2 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarUASR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SetVarUASR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SetVarUASR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SetVarUASR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SkipPProgBlockR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SkipPProgBlockR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SkipPProgBlockR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SkipPProgBlockR.datasource index b2d6df86..54cd59fa 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SkipPProgBlockR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SkipPProgBlockR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SkipPProgBlockR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SkipPProgBlockR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SndProcInpDataR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SndProcInpDataR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SndProcInpDataR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SndProcInpDataR.datasource index 62690de6..d9a2cf3c 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SndProcInpDataR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SndProcInpDataR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SndProcInpDataR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SndProcInpDataR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SyncroCycleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SyncroCycleR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SyncroCycleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SyncroCycleR.datasource index 47b212d3..c0973cde 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.SyncroCycleR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.SyncroCycleR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.SyncroCycleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.SyncroCycleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.UnLockTableIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.UnLockTableIIR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.UnLockTableIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.UnLockTableIIR.datasource index 43e93bc6..54a9cc6b 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.UnLockTableIIR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.UnLockTableIIR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.UnLockTableIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.UnLockTableIIR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteRemapDefinitionsR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteRemapDefinitionsR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteRemapDefinitionsR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteRemapDefinitionsR.datasource index f2963747..237b4e81 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteRemapDefinitionsR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteRemapDefinitionsR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.WriteRemapDefinitionsR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.WriteRemapDefinitionsR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarDoubleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarDoubleR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarDoubleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarDoubleR.datasource index 5422e510..01feb708 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarDoubleR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarDoubleR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.WriteVarDoubleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.WriteVarDoubleR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarTextR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarTextR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarTextR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarTextR.datasource index 18f4eb3e..d983b653 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarTextR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarTextR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.WriteVarTextR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.WriteVarTextR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordBitR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordBitR.datasource similarity index 72% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordBitR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordBitR.datasource index ee411aae..0dbbb101 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordBitR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordBitR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.WriteVarWordBitR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.WriteVarWordBitR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordR.datasource similarity index 73% rename from CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordR.datasource index 0c9f5fd3..e6f91c4e 100644 --- a/CVCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordR.datasource +++ b/EgwProxy.OsaiCncLib/Service References/OpenControl/CVCncLib.OpenControl.WriteVarWordR.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.OpenControl.WriteVarWordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.OpenControl.WriteVarWordR, Service References.OpenControl.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Service References/OpenControl/OPENcontrol.wsdl b/EgwProxy.OsaiCncLib/Service References/OpenControl/OPENcontrol.wsdl similarity index 100% rename from CVCncLib/Service References/OpenControl/OPENcontrol.wsdl rename to EgwProxy.OsaiCncLib/Service References/OpenControl/OPENcontrol.wsdl diff --git a/CVCncLib/Service References/OpenControl/Reference.svcmap b/EgwProxy.OsaiCncLib/Service References/OpenControl/Reference.svcmap similarity index 100% rename from CVCncLib/Service References/OpenControl/Reference.svcmap rename to EgwProxy.OsaiCncLib/Service References/OpenControl/Reference.svcmap diff --git a/CVCncLib/Service References/OpenControl/Reference.vb b/EgwProxy.OsaiCncLib/Service References/OpenControl/Reference.vb similarity index 100% rename from CVCncLib/Service References/OpenControl/Reference.vb rename to EgwProxy.OsaiCncLib/Service References/OpenControl/Reference.vb diff --git a/CVCncLib/Service References/OpenControl/configuration.svcinfo b/EgwProxy.OsaiCncLib/Service References/OpenControl/configuration.svcinfo similarity index 100% rename from CVCncLib/Service References/OpenControl/configuration.svcinfo rename to EgwProxy.OsaiCncLib/Service References/OpenControl/configuration.svcinfo diff --git a/CVCncLib/Service References/OpenControl/configuration91.svcinfo b/EgwProxy.OsaiCncLib/Service References/OpenControl/configuration91.svcinfo similarity index 100% rename from CVCncLib/Service References/OpenControl/configuration91.svcinfo rename to EgwProxy.OsaiCncLib/Service References/OpenControl/configuration91.svcinfo diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.AxesRefR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.AxesRefR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.AxesRefR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.AxesRefR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.BootModeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.BootModeR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.BootModeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.BootModeR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.BootPhaseEnquiryR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.BootPhaseEnquiryR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.BootPhaseEnquiryR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.BootPhaseEnquiryR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.BootRebootR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.BootRebootR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.BootRebootR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.BootRebootR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.BootShutDownR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.BootShutDownR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.BootShutDownR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.BootShutDownR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.CheckHistoryR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.CheckHistoryR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.CheckHistoryR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.CheckHistoryR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.CycleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.CycleR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.CycleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.CycleR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.DncDataR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.DncDataR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.DncDataR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.DncDataR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.DncEofR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.DncEofR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.DncEofR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.DncEofR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.DncInitR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.DncInitR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.DncInitR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.DncInitR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.DncStopR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.DncStopR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.DncStopR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.DncStopR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.EseExR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.EseExR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.EseExR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.EseExR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.EseR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.EseR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.EseR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.EseR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ExeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ExeR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ExeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ExeR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetActivePartProgramR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetActivePartProgramR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetActivePartProgramR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetActivePartProgramR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAvailableCustomEventsR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAvailableCustomEventsR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAvailableCustomEventsR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAvailableCustomEventsR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxOriginNumR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxOriginNumR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxOriginNumR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxOriginNumR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxesInfo3R.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxesInfo3R.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxesInfo3R.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxesInfo3R.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxesPositionR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxesPositionR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxesPositionR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetAxesPositionR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetBinaryFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetBinaryFileR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetBinaryFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetBinaryFileR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetBlkNumR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetBlkNumR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetBlkNumR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetBlkNumR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetCNCRegKeyR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetCNCRegKeyR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetCNCRegKeyR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetCNCRegKeyR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetCodeNumberR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetCodeNumberR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetCodeNumberR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetCodeNumberR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetDateTimeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetDateTimeR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetDateTimeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetDateTimeR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetFileR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetFileR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetGCodeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetGCodeR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetGCodeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetGCodeR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetHWKeyR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetHWKeyR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetHWKeyR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetHWKeyR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetMCodeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetMCodeR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetMCodeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetMCodeR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetMarkerInfoR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetMarkerInfoR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetMarkerInfoR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetMarkerInfoR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetNcInfo1R.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetNcInfo1R.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetNcInfo1R.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetNcInfo1R.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetNcInfo2R.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetNcInfo2R.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetNcInfo2R.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetNcInfo2R.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOffsetTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOffsetTabRecordIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOffsetTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOffsetTabRecordIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOptionsR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOptionsR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOptionsR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOptionsR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOriginTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOriginTabRecordIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOriginTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetOriginTabRecordIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetPTechSizesR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetPTechSizesR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetPTechSizesR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetPTechSizesR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetPartProgramLinesR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetPartProgramLinesR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetPartProgramLinesR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetPartProgramLinesR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcInInputR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcInInputR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcInInputR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcInInputR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcVarDoubleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcVarDoubleR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcVarDoubleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcVarDoubleR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcVarWordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcVarWordR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcVarWordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcVarWordR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcessConfNumR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcessConfNumR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcessConfNumR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcessConfNumR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcessStatusR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcessStatusR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcessStatusR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetProcessStatusR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSelectedProcessR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSelectedProcessR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSelectedProcessR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSelectedProcessR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSerialNumberR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSerialNumberR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSerialNumberR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSerialNumberR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetServoParR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetServoParR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetServoParR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetServoParR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSysTickR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSysTickR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSysTickR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetSysTickR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetToolNamesR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetToolNamesR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetToolNamesR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetToolNamesR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetToolTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetToolTabRecordIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetToolTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetToolTabRecordIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetUserTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetUserTabRecordIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetUserTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetUserTabRecordIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetVarJOGR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetVarJOGR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetVarJOGR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetVarJOGR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetVarRCMR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetVarRCMR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.GetVarRCMR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.GetVarRCMR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.HoldR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.HoldR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.HoldR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.HoldR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LoadPTechR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LoadPTechR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LoadPTechR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LoadPTechR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LockTableIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LockTableIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LockTableIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LockTableIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSAddDriveR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSAddDriveR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSAddDriveR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSAddDriveR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSChangeFileAttribR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSChangeFileAttribR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSChangeFileAttribR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSChangeFileAttribR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCloseFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCloseFileR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCloseFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCloseFileR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCopyFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCopyFileR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCopyFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCopyFileR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCreateDirR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCreateDirR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCreateDirR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCreateDirR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCreateFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCreateFileR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCreateFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSCreateFileR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindCloseR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindCloseR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindCloseR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindCloseR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindFirstR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindFirstR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindFirstR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindFirstR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindNextR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindNextR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindNextR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSFindNextR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetDriveListR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetDriveListR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetDriveListR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetDriveListR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetDrivePathR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetDrivePathR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetDrivePathR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetDrivePathR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetFileAttribR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetFileAttribR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetFileAttribR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetFileAttribR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetFileSizeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetFileSizeR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetFileSizeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetFileSizeR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetHiddenDriveListR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetHiddenDriveListR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetHiddenDriveListR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetHiddenDriveListR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetInfoR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetInfoR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetInfoR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetInfoR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetNumDriveR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetNumDriveR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetNumDriveR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetNumDriveR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetSecurityLevelR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetSecurityLevelR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetSecurityLevelR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSGetSecurityLevelR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSLongFileNamesR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSLongFileNamesR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSLongFileNamesR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSLongFileNamesR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSOpenFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSOpenFileR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSOpenFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSOpenFileR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSReadRecordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSReadRecordR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSReadRecordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSReadRecordR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSReloadDriveListR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSReloadDriveListR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSReloadDriveListR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSReloadDriveListR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveDirR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveDirR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveDirR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveDirR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveDriveR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveDriveR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveDriveR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveDriveR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveFileR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRemoveFileR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRenameR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRenameR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRenameR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSRenameR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSSetFileAttribR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSSetFileAttribR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSSetFileAttribR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSSetFileAttribR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSSetSecurityLevelR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSSetSecurityLevelR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSSetSecurityLevelR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSSetSecurityLevelR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSWriteRecordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSWriteRecordR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSWriteRecordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.LogFSWriteRecordR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ManagePartProgramR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ManagePartProgramR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ManagePartProgramR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ManagePartProgramR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonAddVariableR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonAddVariableR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonAddVariableR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonAddVariableR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonCloseChannelR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonCloseChannelR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonCloseChannelR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonCloseChannelR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonDeleteVariableR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonDeleteVariableR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonDeleteVariableR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonDeleteVariableR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonGetVariableR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonGetVariableR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonGetVariableR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonGetVariableR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonOpenChannelR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonOpenChannelR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonOpenChannelR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonOpenChannelR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonStartSamplingR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonStartSamplingR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonStartSamplingR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonStartSamplingR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonStopSamplingR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonStopSamplingR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.MonStopSamplingR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.MonStopSamplingR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.PutBinaryFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.PutBinaryFileR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.PutBinaryFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.PutBinaryFileR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.PutFileR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.PutFileR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.PutFileR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.PutFileR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentAnomalyMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentAnomalyMsgR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentAnomalyMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentAnomalyMsgR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentEmergMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentEmergMsgR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentEmergMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentEmergMsgR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentErrorMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentErrorMsgR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentErrorMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadCurrentErrorMsgR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadErrMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadErrMsgR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadErrMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadErrMsgR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryAnomalyMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryAnomalyMsgR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryAnomalyMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryAnomalyMsgR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryEmergMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryEmergMsgR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryEmergMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryEmergMsgR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryErrorMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryErrorMsgR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryErrorMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryErrorMsgR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryLogMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryLogMsgR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryLogMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadHistoryLogMsgR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadPartProgramMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadPartProgramMsgR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadPartProgramMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadPartProgramMsgR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadRemapDefinitionsR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadRemapDefinitionsR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadRemapDefinitionsR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadRemapDefinitionsR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarDoubleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarDoubleR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarDoubleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarDoubleR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarTextR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarTextR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarTextR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarTextR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarWordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarWordR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarWordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadVarWordR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadWarningMsgR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadWarningMsgR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadWarningMsgR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ReadWarningMsgR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ResetR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ResetR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ResetR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ResetR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ResetSingleTableIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ResetSingleTableIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.ResetSingleTableIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.ResetSingleTableIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.RestoreBackupMemoryR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.RestoreBackupMemoryR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.RestoreBackupMemoryR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.RestoreBackupMemoryR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.RestoreSingleTableR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.RestoreSingleTableR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.RestoreSingleTableR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.RestoreSingleTableR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveBackupMemoryR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveBackupMemoryR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveBackupMemoryR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveBackupMemoryR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveSingleTableR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveSingleTableR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveSingleTableR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveSingleTableR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveTablesR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveTablesR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveTablesR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SaveTablesR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectPartProgramFromDriveR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectPartProgramFromDriveR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectPartProgramFromDriveR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectPartProgramFromDriveR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectPartProgramR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectPartProgramR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectPartProgramR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectPartProgramR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectProcAxisR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectProcAxisR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectProcAxisR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectProcAxisR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectProcessR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectProcessR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectProcessR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SelectProcessR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetDateTimeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetDateTimeR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetDateTimeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetDateTimeR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedManOverR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedManOverR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedManOverR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedManOverR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedRapidOverR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedRapidOverR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedRapidOverR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedRapidOverR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedRateOverR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedRateOverR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedRateOverR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetFeedRateOverR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetIpAddressR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetIpAddressR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetIpAddressR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetIpAddressR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetManMovDirectionR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetManMovDirectionR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetManMovDirectionR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetManMovDirectionR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetMdiStringR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetMdiStringR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetMdiStringR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetMdiStringR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetOffsetTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetOffsetTabRecordIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetOffsetTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetOffsetTabRecordIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetOriginTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetOriginTabRecordIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetOriginTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetOriginTabRecordIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcVarDoubleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcVarDoubleR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcVarDoubleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcVarDoubleR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcVarWordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcVarWordR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcVarWordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcVarWordR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcessModeR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcessModeR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcessModeR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetProcessModeR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetServoParR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetServoParR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetServoParR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetServoParR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetSpeedRateOverR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetSpeedRateOverR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetSpeedRateOverR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetSpeedRateOverR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetToolTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetToolTabRecordIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetToolTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetToolTabRecordIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetUserTabRecordIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetUserTabRecordIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetUserTabRecordIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetUserTabRecordIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarJOGR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarJOGR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarJOGR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarJOGR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarRCMR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarRCMR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarRCMR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarRCMR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarUASR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarUASR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarUASR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SetVarUASR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SkipPProgBlockR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SkipPProgBlockR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SkipPProgBlockR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SkipPProgBlockR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SndProcInpDataR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SndProcInpDataR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SndProcInpDataR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SndProcInpDataR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SyncroCycleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SyncroCycleR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.SyncroCycleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.SyncroCycleR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.UnLockTableIIR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.UnLockTableIIR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.UnLockTableIIR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.UnLockTableIIR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteRemapDefinitionsR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteRemapDefinitionsR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteRemapDefinitionsR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteRemapDefinitionsR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarDoubleR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarDoubleR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarDoubleR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarDoubleR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarTextR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarTextR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarTextR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarTextR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarWordBitR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarWordBitR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarWordBitR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarWordBitR.datasource diff --git a/CVCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarWordR.datasource b/EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarWordR.datasource similarity index 100% rename from CVCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarWordR.datasource rename to EgwProxy.OsaiCncLib/Service References/OpenControl/easysuperv.OpenControl.WriteVarWordR.datasource diff --git a/CVCncLib/Web References/WebReference/AXORIGNUM1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/AXORIGNUM1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/AXORIGNUM1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/AXORIGNUM1.datasource index 14d202f3..9cdd4f24 100644 --- a/CVCncLib/Web References/WebReference/AXORIGNUM1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/AXORIGNUM1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.AXORIGNUM, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.AXORIGNUM, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/DRIVEBASICINFO1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/DRIVEBASICINFO1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/DRIVEBASICINFO1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/DRIVEBASICINFO1.datasource index 1bc25265..b8a700a2 100644 --- a/CVCncLib/Web References/WebReference/DRIVEBASICINFO1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/DRIVEBASICINFO1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.DRIVEBASICINFO, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.DRIVEBASICINFO, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/ERRMSG1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/ERRMSG1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/ERRMSG1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/ERRMSG1.datasource index c1867f2c..c524fe20 100644 --- a/CVCncLib/Web References/WebReference/ERRMSG1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/ERRMSG1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.ERRMSG, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.ERRMSG, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/FILEFINDDATA1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/FILEFINDDATA1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/FILEFINDDATA1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/FILEFINDDATA1.datasource index 05e048f3..8c0b0138 100644 --- a/CVCncLib/Web References/WebReference/FILEFINDDATA1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/FILEFINDDATA1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.FILEFINDDATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.FILEFINDDATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/GETBLKNUMDATA1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/GETBLKNUMDATA1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/GETBLKNUMDATA1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/GETBLKNUMDATA1.datasource index bc225b91..3fda17ec 100644 --- a/CVCncLib/Web References/WebReference/GETBLKNUMDATA1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/GETBLKNUMDATA1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.GETBLKNUMDATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.GETBLKNUMDATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/GETINFO1DATA1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/GETINFO1DATA1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/GETINFO1DATA1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/GETINFO1DATA1.datasource index a15fba61..9f9f8ddf 100644 --- a/CVCncLib/Web References/WebReference/GETINFO1DATA1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/GETINFO1DATA1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.GETINFO1DATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.GETINFO1DATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/GETINFO2DATA1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/GETINFO2DATA1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/GETINFO2DATA1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/GETINFO2DATA1.datasource index 5c846519..96fd1d7e 100644 --- a/CVCncLib/Web References/WebReference/GETINFO2DATA1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/GETINFO2DATA1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.GETINFO2DATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.GETINFO2DATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/GETINTDATA1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/GETINTDATA1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/GETINTDATA1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/GETINTDATA1.datasource index 4fadb20c..6c7ffb2e 100644 --- a/CVCncLib/Web References/WebReference/GETINTDATA1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/GETINTDATA1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.GETINTDATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.GETINTDATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/INPUTINFO1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/INPUTINFO1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/INPUTINFO1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/INPUTINFO1.datasource index b8ea8df2..1167d698 100644 --- a/CVCncLib/Web References/WebReference/INPUTINFO1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/INPUTINFO1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.INPUTINFO, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.INPUTINFO, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/MAGAZINETABLEII1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/MAGAZINETABLEII1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/MAGAZINETABLEII1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/MAGAZINETABLEII1.datasource index 04c11295..dd1125de 100644 --- a/CVCncLib/Web References/WebReference/MAGAZINETABLEII1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/MAGAZINETABLEII1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.MAGAZINETABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.MAGAZINETABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/MARKERINFO1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/MARKERINFO1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/MARKERINFO1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/MARKERINFO1.datasource index 098506bf..25bea94e 100644 --- a/CVCncLib/Web References/WebReference/MARKERINFO1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/MARKERINFO1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.MARKERINFO, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.MARKERINFO, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/MONCUSTOMEVENTINFO1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/MONCUSTOMEVENTINFO1.datasource similarity index 72% rename from CVCncLib/Web References/WebReference/MONCUSTOMEVENTINFO1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/MONCUSTOMEVENTINFO1.datasource index a6618656..05a69859 100644 --- a/CVCncLib/Web References/WebReference/MONCUSTOMEVENTINFO1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/MONCUSTOMEVENTINFO1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.MONCUSTOMEVENTINFO, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.MONCUSTOMEVENTINFO, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/MONDRYRUN1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/MONDRYRUN1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/MONDRYRUN1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/MONDRYRUN1.datasource index 4d21cae6..b9d11262 100644 --- a/CVCncLib/Web References/WebReference/MONDRYRUN1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/MONDRYRUN1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.MONDRYRUN, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.MONDRYRUN, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/MONENTEMOVI1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/MONENTEMOVI1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/MONENTEMOVI1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/MONENTEMOVI1.datasource index d48f8980..a1c937a1 100644 --- a/CVCncLib/Web References/WebReference/MONENTEMOVI1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/MONENTEMOVI1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.MONENTEMOVI, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.MONENTEMOVI, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/MSGANOMALY1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/MSGANOMALY1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/MSGANOMALY1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/MSGANOMALY1.datasource index b710d3c7..7eaf1c2d 100644 --- a/CVCncLib/Web References/WebReference/MSGANOMALY1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/MSGANOMALY1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.MSGANOMALY, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.MSGANOMALY, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/MSGEMERGENCY1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/MSGEMERGENCY1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/MSGEMERGENCY1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/MSGEMERGENCY1.datasource index fbfd16bf..2f89aa74 100644 --- a/CVCncLib/Web References/WebReference/MSGEMERGENCY1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/MSGEMERGENCY1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.MSGEMERGENCY, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.MSGEMERGENCY, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/MSGERROR1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/MSGERROR1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/MSGERROR1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/MSGERROR1.datasource index 8b0c7cba..04ab38ee 100644 --- a/CVCncLib/Web References/WebReference/MSGERROR1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/MSGERROR1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.MSGERROR, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.MSGERROR, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/MSGLOGS1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/MSGLOGS1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/MSGLOGS1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/MSGLOGS1.datasource index 8b0902eb..400f7fb3 100644 --- a/CVCncLib/Web References/WebReference/MSGLOGS1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/MSGLOGS1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.MSGLOGS, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.MSGLOGS, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/OFFSETTABLEII1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/OFFSETTABLEII1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/OFFSETTABLEII1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/OFFSETTABLEII1.datasource index b217734b..a4d3e3dd 100644 --- a/CVCncLib/Web References/WebReference/OFFSETTABLEII1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/OFFSETTABLEII1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.OFFSETTABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.OFFSETTABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/OPENcontrol.wsdl b/EgwProxy.OsaiCncLib/Web References/WebReference/OPENcontrol.wsdl similarity index 100% rename from CVCncLib/Web References/WebReference/OPENcontrol.wsdl rename to EgwProxy.OsaiCncLib/Web References/WebReference/OPENcontrol.wsdl diff --git a/CVCncLib/Web References/WebReference/ORIGINTABLEII1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/ORIGINTABLEII1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/ORIGINTABLEII1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/ORIGINTABLEII1.datasource index daa872a8..f134bc28 100644 --- a/CVCncLib/Web References/WebReference/ORIGINTABLEII1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/ORIGINTABLEII1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.ORIGINTABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.ORIGINTABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/POCKETTABLEII1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/POCKETTABLEII1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/POCKETTABLEII1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/POCKETTABLEII1.datasource index a30fea5e..46e6d6f2 100644 --- a/CVCncLib/Web References/WebReference/POCKETTABLEII1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/POCKETTABLEII1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.POCKETTABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.POCKETTABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/PROCDATA1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/PROCDATA1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/PROCDATA1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/PROCDATA1.datasource index b565334c..474d77d2 100644 --- a/CVCncLib/Web References/WebReference/PROCDATA1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/PROCDATA1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.PROCDATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.PROCDATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/REMAPDEF1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/REMAPDEF1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/REMAPDEF1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/REMAPDEF1.datasource index affde3b6..bbe43e8a 100644 --- a/CVCncLib/Web References/WebReference/REMAPDEF1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/REMAPDEF1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.REMAPDEF, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.REMAPDEF, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/Reference.map b/EgwProxy.OsaiCncLib/Web References/WebReference/Reference.map similarity index 100% rename from CVCncLib/Web References/WebReference/Reference.map rename to EgwProxy.OsaiCncLib/Web References/WebReference/Reference.map diff --git a/CVCncLib/Web References/WebReference/Reference.vb b/EgwProxy.OsaiCncLib/Web References/WebReference/Reference.vb similarity index 99% rename from CVCncLib/Web References/WebReference/Reference.vb rename to EgwProxy.OsaiCncLib/Web References/WebReference/Reference.vb index 59af3513..87a807a0 100644 --- a/CVCncLib/Web References/WebReference/Reference.vb +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/Reference.vb @@ -428,7 +428,7 @@ Namespace WebReference ''' Public Sub New() MyBase.New - Me.Url = Global.CVCncLib.My.MySettings.Default.d_prod_WebReference_OPENcontrol + Me.Url = Global.EgwProxy.OsaiCncLib.My.MySettings.Default.d_prod_WebReference_OPENcontrol If (Me.IsLocalFileSystemWebService(Me.Url) = true) Then Me.UseDefaultCredentials = true Me.useDefaultCredentialsSetExplicitly = false diff --git a/CVCncLib/Web References/WebReference/SECURDATA1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/SECURDATA1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/SECURDATA1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/SECURDATA1.datasource index a34bc8fb..76e1d1a4 100644 --- a/CVCncLib/Web References/WebReference/SECURDATA1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/SECURDATA1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.SECURDATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.SECURDATA, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/SECURITYLEVEL1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/SECURITYLEVEL1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/SECURITYLEVEL1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/SECURITYLEVEL1.datasource index b9c897ec..065565f9 100644 --- a/CVCncLib/Web References/WebReference/SECURITYLEVEL1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/SECURITYLEVEL1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.SECURITYLEVEL, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.SECURITYLEVEL, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/TOOLTABLEII1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/TOOLTABLEII1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/TOOLTABLEII1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/TOOLTABLEII1.datasource index 3d71a014..28ffbc79 100644 --- a/CVCncLib/Web References/WebReference/TOOLTABLEII1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/TOOLTABLEII1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.TOOLTABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.TOOLTABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/Web References/WebReference/USERTABLEII1.datasource b/EgwProxy.OsaiCncLib/Web References/WebReference/USERTABLEII1.datasource similarity index 73% rename from CVCncLib/Web References/WebReference/USERTABLEII1.datasource rename to EgwProxy.OsaiCncLib/Web References/WebReference/USERTABLEII1.datasource index e1d2f516..99f15b6c 100644 --- a/CVCncLib/Web References/WebReference/USERTABLEII1.datasource +++ b/EgwProxy.OsaiCncLib/Web References/WebReference/USERTABLEII1.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - CVCncLib.WebReference.USERTABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + EgwProxy.OsaiCncLib.WebReference.USERTABLEII, Web References.WebReference.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/CVCncLib/app.config b/EgwProxy.OsaiCncLib/app.config similarity index 88% rename from CVCncLib/app.config rename to EgwProxy.OsaiCncLib/app.config index 07c5e8f9..5b47729b 100644 --- a/CVCncLib/app.config +++ b/EgwProxy.OsaiCncLib/app.config @@ -2,7 +2,7 @@ -
+
@@ -36,13 +36,13 @@ - + http://192.168.20.2:8080 http://192.168.20.2:8080 - + diff --git a/CVCncLib/arstcomm.ico b/EgwProxy.OsaiCncLib/arstcomm.ico similarity index 100% rename from CVCncLib/arstcomm.ico rename to EgwProxy.OsaiCncLib/arstcomm.ico diff --git a/CVCncLib/qq b/EgwProxy.OsaiCncLib/qq similarity index 100% rename from CVCncLib/qq rename to EgwProxy.OsaiCncLib/qq diff --git a/CVCncLib/reg.bat b/EgwProxy.OsaiCncLib/reg.bat similarity index 100% rename from CVCncLib/reg.bat rename to EgwProxy.OsaiCncLib/reg.bat diff --git a/CVCncLib/testSam.XmlSerializers.dll b/EgwProxy.OsaiCncLib/testSam.XmlSerializers.dll similarity index 100% rename from CVCncLib/testSam.XmlSerializers.dll rename to EgwProxy.OsaiCncLib/testSam.XmlSerializers.dll diff --git a/CVCncLib/testSam.vshost.exe b/EgwProxy.OsaiCncLib/testSam.vshost.exe similarity index 100% rename from CVCncLib/testSam.vshost.exe rename to EgwProxy.OsaiCncLib/testSam.vshost.exe diff --git a/CVCncLib/testSam.vshost.exe.config b/EgwProxy.OsaiCncLib/testSam.vshost.exe.config similarity index 100% rename from CVCncLib/testSam.vshost.exe.config rename to EgwProxy.OsaiCncLib/testSam.vshost.exe.config diff --git a/CVCncLib/ureg.bat b/EgwProxy.OsaiCncLib/ureg.bat similarity index 100% rename from CVCncLib/ureg.bat rename to EgwProxy.OsaiCncLib/ureg.bat