Removing Oracle Data Provider for .NET from the Global Build Cache

I recently installed Oracle Developer Tools for Visual Studio. Now I get this error when opening Visual Studio. Can someone explain to me a hoe to get rid of this message.

Microsoft Visual Studio

The Oracle Data Provider for .NET was installed without configuration across the entire computer. However, the version of Oracle Data Provider for .NET was discovered in the global assembly cache, which may be incompatible. Remove Oracle Data Provider for .Net from Global Assembly Cache restart Visual Studio

[OK]

+2
source share
2 answers

, . : Studio https://docs.microsoft.com/en-us/dotnet/framework/tools/developer-command-prompt-for-vs

gacutil /l,

, :

gacutil /u [assembly name]

. (, Oracle.ManagedDataAccess)

Visual Studio, . , machine.config , . , .

, .

0

C:\Windows\Microsoft.NET\ . ,

  • Oracle.ManagedDataAccess( GAC_64)
  • Oracle.DataAccess.resources( GAC_MSIL)
  • Oracle.DataAccess( GAC_32)
0

Source: https://habr.com/ru/post/1613254/


All Articles