Configuration Tool / Console from Enterprise Library 6 with Visual Studio 2013 Throws FileNotFoundException

I am experimenting with EntLib6 and Visual Studio 2013.

When I try to open the web.config file with EntLibConfig.exe or EntLibConfig-32.exe, I get the following exception:

Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01:   entlibconfig.exe
Problem Signature 02:   6.0.1304.0
Problem Signature 03:   51795f05
Problem Signature 04:   EntLibConfig
Problem Signature 05:   6.0.1304.0
Problem Signature 06:   51795f05
Problem Signature 07:   3
Problem Signature 08:   29
Problem Signature 09:   System.IO.FileNotFoundException
OS Version: 6.1.7601.2.1.0.256.48
Locale ID:  1033
Additional Information 1:   25bb
Additional Information 2:   25bbdf70ded93ca74287ca4dc5fdb6ca
Additional Information 3:   86d3
Additional Information 4:   86d3c846a76cb9420f22a0b4ef52ed43

Read our privacy statement online:
http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt

I am experimenting with a sample here - http://code.msdn.microsoft.com/Use-Jquery-Autocomplete-a2e3e42e#content (use JQuery Autocomplete with Web Service (ASMX) DataSource)

My machine is a 64-bit version of Windows 7, update VS2013 2. What file is it referencing and how do I get through this error?

+4
source share
3 answers

DLL , Entlibconfig.exe. , Microsoft.Practices.Unity.dll . , .

Microsoft.Practices.EnterpriseLibrary.Common.dll Microsoft.Practices.EnterpriseLibrary.Configuration.Design.HostAdapterV5.dll Microsoft.Practices.EnterpriseLibrary.Configuration.DesignTime.dll Microsoft.Practices.Unity.dll

+3

. Logging Application Block .

  • EntLibConfig.exe EntLibConfig.exe.config
  • Microsoft.Practices.EnterpriseLibrary.Common.dll
  • Microsoft.Practices.EnterpriseLibrary.Configuration.Design.HostAdapter.dll
  • Microsoft.Practices.EnterpriseLibrary.Configuration.Design.HostAdapterV5.dll
  • Microsoft.Practices.EnterpriseLibrary.Configuration.DesignTime.dll
  • Microsoft.Practices.EnterpriseLibrary.Configuration.EnvironmentalOverrides.dll
  • Microsoft.Practices.EnterpriseLibrary.Data.dll
  • Microsoft.Practices.EnterpriseLibrary.Logging.Database.dll
  • Microsoft.Practices.EnterpriseLibrary.Logging.dll
  • Microsoft.Practices.ServiceLocation.dll
  • Microsoft.Practices.Unity.dll
  • Microsoft.Practices.Unity.Interception.dll
+1

For those who find these years from now (for example, I just did) if you downloaded binary files EL, after installation, there script PowerShell, install-packages.ps1. Running it causes several additional DLLs to be loaded into the local directory (and who knows what else), and then EntLibConfig works fine.

0
source

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


All Articles