Error with SqlSysClrTypes.msi when trying to install my application in C # and SqlServer

2

I have an application developed in C # with SqlServer 2014 and I have the database included in the project.
When I install the program on my pc I have no problems and the program works correctly.
The error appears when trying to install the application on the client with windows 7; begins the download of necessary files until at a moment it throws the error

  

The installation has detected that the file c: //...path..//SqlsysClrTypes.msi has changed since it was initially published.

and after this message the installation is canceled.

I found that maybe the error is due to the version of SqlServer.Types.dll is different from the one installed in the OS, in the program the version I have is 12.0.0.0 but I can not find the one in the OS .

The path to verify the version of SqlSysClrTypes in the windows registry is:

  

HKLM \ SOFTWARE \ Wow6432Node \ Microsoft \ Windows \ CurrentVersion \ Uninstall {718FFB65-F6E4-4D62-861F-ED10ED32C936}

I thought about updating the version I have in my application in some way, but I do not know how to do it.

    
asked by Pablo Matias 26.02.2018 в 00:42
source

1 answer

0

The error was due to the fact that in the prerequisites of the installer I had selected (in addition to the necessary framework) the files of SqlsysClrTypes . So I deselected these files and I was able to install the program on the client without problems.

    
answered by 18.03.2018 / 22:52
source