System array empty ошибка

I created a new app with VS 2015 RC and the MVC template and without modifying any line of code I have this error:

Method not found: '!!0[] System.Array.Empty()'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.MissingMethodException: Method not found: '!!0[] System.Array.Empty()'.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:


[MissingMethodException: Method not found: '!!0[] System.Array.Empty()'.]
   SAASApp.BundleConfig.RegisterBundles(BundleCollection bundles) in C:ProyectosSAASAppSAASAppApp_StartBundleConfig.cs:29
   SAASApp.MvcApplication.Application_Start() in C:ProyectosSAASAppSAASAppGlobal.asax.cs:18

[HttpException (0x80004005): Method not found: '!!0[] System.Array.Empty()'.]
   System.Web.HttpApplicationFactory.EnsureAppStartCalledForIntegratedMode(HttpContext context, HttpApplication app) +483
   System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr appContext, HttpContext context, MethodInfo[] handlers) +118
   System.Web.HttpApplication.InitSpecial(HttpApplicationState state, MethodInfo[] handlers, IntPtr appContext, HttpContext context) +176
   System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr appContext, HttpContext context) +350
   System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext) +305

[HttpException (0x80004005): Method not found: '!!0[] System.Array.Empty()'.]
   System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +661
   System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +96
   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +189

First time it happens to me, so I am stuck at the moment

StayOnTarget's user avatar

StayOnTarget

11.5k10 gold badges50 silver badges78 bronze badges

asked Jul 6, 2015 at 19:10

Luis Valencia's user avatar

Luis ValenciaLuis Valencia

32.1k90 gold badges283 silver badges500 bronze badges

1

I had this situation on the production server while on development machine everything was OK.

Installing .NET Framework 4.6 on the target machine has fixed the problem.

answered Aug 18, 2015 at 15:00

Andrey Kovalenko's user avatar

Andrey KovalenkoAndrey Kovalenko

2,5341 gold badge10 silver badges4 bronze badges

5

Sorry for being late to the party, but in case someone else gets this problem via a TeamCity build, I can describe what we had to do.

.NET 4.6 was installed on our build server (but not on the application server), and the RunnerType was Visual Studio (sln) and the Visual Studio option was set to 2015.

This forced the build to use 4.6, and I needed to change the Visual Studio option to 2013 to force the build to use 4.5.2

answered Feb 12, 2016 at 9:22

gautejohan's user avatar

4

Just For others facing this situation:

if you look in the web.config file you will realize that in <compilation> tag you have the value targetFramework set to a version below 4.6. but in fact , at build time you published your application via .NET FrameWork 4.6 or above (Corresponds to ASP.NET MVC 4.6 and above).

So if you change the value of targetFramework to 4.6 the error will change shape into :

The ‘targetFramework’ attribute currently references a version that is later than the installed version of the .NET Framework.

this is the real error and you will get rid of it by installing appropriate Version of .Net FrameWork in production environment of your Web App.

answered Aug 30, 2016 at 15:21

AmiNadimi's user avatar

AmiNadimiAmiNadimi

5,0293 gold badges39 silver badges53 bronze badges

1

Updating the .NET Framework to its latest (4.7.2) resolved the issue.
Thanks to @Andrey Kovalenko for solution.

But should not the error be like,

enter image description here

I am not sure telling each customer about updating their .NET Framework is applicable. I had this issue especially at Windows Embedded OS installed system, only at production environment.

Is there any other way to overcome the behavior, from our code base itself.?

answered Dec 25, 2018 at 13:04

Naveen Kumar V's user avatar

Naveen Kumar VNaveen Kumar V

2,4991 gold badge27 silver badges43 bronze badges

1

I try these solution without success.

The solution for me was go to the application pool, turn to 2.0, execute the site on browser, see the error (because the version is wrong) and turn back to 4.0 and «voilà», I got it, the website open.

answered May 17, 2017 at 17:27

Roberto Gentile's user avatar

Maybe it too late but I got the same problem and fixed as below.
I use Visual Studio 2015 ,the configuration compilation on web.config point to .NET FrameWork 4.6 by default. I could not just edit only on the web.config file. If you can not install .NET FrameWork 4.6 on server and your application don’t use it.

  1. Go to menu Debug > [Project Name] Properties > Application .
  2. choose the .NET Framework 4.5 (or any which server support and compatible your application) from Target Framwork dropdown list.
  3. Rebuild again.

answered Jun 21, 2018 at 7:34

waewta artpongsa's user avatar

In my case, I had a corrupt .NET installation on my Windows Server 2012 R2. I had to install a more recent version of .NET (v4.7.1) and the site is working now.

answered Oct 28, 2017 at 11:20

André Haupt's user avatar

André HauptAndré Haupt

3,2545 gold badges32 silver badges56 bronze badges

In my case, I don’t have access to the IIS itself and I was having this problem when I was using a single method which doesn’t have anything special only things from .net 2.

The solution: I’ve Extracted that method and created a Class Library with .net 2.0 and it works.

answered Jan 10, 2018 at 15:15

Ricardo França's user avatar

Ricardo FrançaRicardo França

2,9232 gold badges18 silver badges18 bronze badges

I have downgraded 4.6.x to 4.5.2 and it worked fine.

scopchanov's user avatar

scopchanov

7,86610 gold badges40 silver badges68 bronze badges

answered Oct 2, 2018 at 9:26

Bhavesh Patel's user avatar

  • Remove From My Forums
  • Вопрос

  • I recently upgraded my development machine and the production server (IIS V 8.0.9200 running on Windows server 2012 v 6.2) to.Net framework 4.6.1. Everything works fine on my development machine and a staging server, but on the production server I get:

    NEW ERROR 
    Message: Method not found: '!!0[] System.Array.Empty()'.
    
    Stack Trace:    at PlasmidTrackingWeb.AddNewPlasmid.GetPlasmid()
       at PlasmidTrackingWeb.AddNewPlasmid.databasePlasmidButton_Click(Object sender, EventArgs e) in C:Visual StudioPlasmidTrackingWebPlasmidTrackingWebAddNewPlasmid.aspx.cs:line 129
       at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    This error is only occurring with a specific method call, but since I can’t reproduce on my machine, I don’t see anything in that method that is not in lots of other methods which execute without error.

    It appears that the error is related to the framework version and possibly also the web.config file targeting the wrong framework. The server itself is running 4.6.1. The config file has

      <system.web>
        <compilation targetFramework="4.6.1" />
        <httpRuntime executionTimeout="200" targetFramework="4.6.1" maxRequestLength="20480" />
        <pages enableEventValidation="false" />
        <customErrors mode="Off" />
      </system.web>

    Looking at IIS configuration & Regedit ../Net Framework Setup/NDP/v4/Full the staging server & the production server look to me like they have identical configuration & framework versions.

    Any idea what could be wrong?

    Thanks,

    Ethan


    Ethan Strauss

    • Изменено

      23 апреля 2019 г. 18:51
      Typo

Ответы

  • Hi Ethan Strauss

    Welcome to the MSDN forum.

    See the error info and target version, I suspect the reason of issue is relevant with .net 4.6.1, has not updated successful in your production machine. could you please check if windows update is up
    to date and not warning or error shown in production machine. I suggest you to install a higher version, .NET 4.7 or later is alterative choose.

    Also, please have a look with this thread:
    https://stackoverflow.com/questions/31253747/method-not-found-0-system-array-empty
     some members share a variety of workaround to troubleshot it.

    Please feel free to let me know if there has any update.

    Best

    May


    MSDN Community Support Please remember to click «Mark as Answer» the responses that resolved your issue, and to click «Unmark as Answer» if not. This can be beneficial to other community members reading this thread. If you have any compliments
    or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com

    • Изменено
      May Luo-MSFT
      24 апреля 2019 г. 6:41
    • Предложено в качестве ответа
      May Luo-MSFT
      25 апреля 2019 г. 9:36
    • Помечено в качестве ответа
      Ethan Strauss
      26 апреля 2019 г. 15:22

9 ответов

У меня была такая ситуация на производственном сервере, пока на машине разработки все было в порядке.

Установка .NET Framework 4.6 на целевой машине устранила проблему.

Andrey Kovalenko
18 авг. 2015, в 16:09

Поделиться

Извините за опоздание на вечеринку, но в случае, если кто-то другой получит эту проблему через сборку TeamCity, я могу описать, что мы должны были сделать.

.NET 4.6 был установлен на нашем сервере сборки (но не на сервере приложений), а RunnerType был Visual Studio (sln), а опция Visual Studio была установлена ​​на 2015 год.

Это заставило сборку использовать 4.6, и мне нужно было изменить параметр Visual Studio на 2013, чтобы заставить сборку использовать 4.5.2

gautejohan
12 фев. 2016, в 09:25

Поделиться

Просто для других, столкнувшихся с этой ситуацией:

если вы посмотрите в файле web.config, вы поймете, что в теге <compilation> у вас есть значение targetFramework, установленное в версии ниже 4.6. но на самом деле во время сборки вы опубликовали свое приложение через .NET FrameWork 4.6 или выше (соответствует ASP.NET MVC 4.6 и выше).

Итак, если вы измените значение targetFramework на 4.6, ошибка изменит форму на:

Атрибут ‘targetFramework’ в настоящее время ссылается на версию, которая позже установленной версии .NET Framework.

это реальная ошибка, и вы избавитесь от нее, установив соответствующую версию .NET Framework в производственную среду вашего веб-приложения.

AmiNadimi
30 авг. 2016, в 15:27

Поделиться

Я пробую это решение без успеха.

Решение для меня было в пуле приложений, превратилось в 2.0, запустил сайт в браузере, посмотрел ошибку (потому что версия неверна) и вернулась к 4.0 и «вуаля», я получил ее, на веб-сайте открыто.

Roberto Gentile
17 май 2017, в 17:52

Поделиться

Обновление до.NET 4.6 сделало свое дело! (Большое спасибо, Андрей Коваленко!)

Flou
12 дек. 2018, в 15:00

Поделиться

Я понизил 4.6.x до 4.5.2, и он работал нормально.

Bhavesh Patel
02 окт. 2018, в 09:48

Поделиться

Может быть, слишком поздно, но я получил ту же проблему и исправил, как показано ниже. Я использую Visual Studio 2015, компиляция конфигурации в web.config по умолчанию указывает на.NET FrameWork 4.6. Я не мог просто редактировать только файл web.config. Если вы не можете установить.NET FrameWork 4.6 на сервер и ваше приложение не использует его.

  1. Перейдите в меню «Отладка»> «[Имя проекта] Свойства»> «Приложение».
  2. выберите.NET Framework 4.5 (или любой сервер, поддерживающий и совместимый с вашим приложением) из раскрывающегося списка Target Framwork.
  3. Восстановите снова.

waewta artpongsa
21 июнь 2018, в 08:35

Поделиться

В моем случае у меня нет доступа к самому IIS, и у меня возникла эта проблема, когда я использовал единственный метод, который не имеет ничего особенного, только вещи из.net 2.

Решение: я извлек этот метод и создал библиотеку классов с.net 2.0, и она работает.

Ricardo França
10 янв. 2018, в 15:20

Поделиться

В моем случае у меня была коррумпированная установка .NET на моем Windows Server 2012 R2. Мне пришлось установить более новую версию .NET(v4.7.1), и сайт теперь работает.

André Hauptfleisch
28 окт. 2017, в 11:38

Поделиться

Ещё вопросы

  • 0Скрыть элементы при щелчке вне запускающего элемента
  • 1UserControl Fire Событие при изменении свойства
  • 0PHP Назначение переменных для нескольких строк динамической формы
  • 0Преобразование PHP в Python для получения смещения часового пояса
  • 1Чтение сжатого файла NumPy во время «с open () как f»
  • 1Как правильно смоделировать HttpContextBase, чтобы мои модульные тесты работали
  • 1Доступ к функциям внутри замыкания из импортированных модулей
  • 1как получить значения для пользовательских полей пользовательской записи в Netsuite
  • 1Список вне диапазона
  • 0FullText InnoDB Поиск без ответа
  • 0PHP в Powershell — выход
  • 0Индекс не непрерывного массива
  • 0Как заявление с OR и Inner присоединиться к MySQL
  • 0Загадочная проблема в моем PHP-скрипте
  • 0Плагин jQuery, сохраняйте ссылку на оригинальный элемент
  • 0Я хочу выбрать каждое значение в раскрывающемся списке, и он будет динамически выполнять модульное тестирование с использованием транспортира
  • 1Больше информации об ошибке + более длинная программа или меньше информации об ошибке + более короткая программа?
  • 0Реализация BFS
  • 0Удаление определенной части массива PHP
  • 1Заполните один столбец последнего элемента в группе значением другого столбца
  • 0Все функции не работают в кнопке возобновления
  • 0AngularJS: поделиться общей фабрикой для создания нового объекта
  • 1Импорт .txt файла с запятыми и без пробелов между числами
  • 0HTML-теги не работают для моего цикла for
  • 0Javascript не загружен в правильном порядке?
  • 1Visual Studio Code Sencha Ext JS Расширение Проблема
  • 1Как игнорировать скрытые файлы при использовании os.stat () в Python?
  • 0Создана форма регистрации и входа с php и mysql, и ошибка не работает в форме регистрации
  • 1ViewModel возвращает чистый объект, когда я пытаюсь получить от него данные
  • 1Как смоделировать RestTemplate метод getForObject, используя jmockit?
  • 1составление данных формы с помощью HttpClient
  • 1Создайте ArrayList объектов класса данных из строки в Kotlin
  • 0Найти функцию в тексте
  • 1Я имею IllegalArgumentException в моем бобе
  • 0Fitbit oauth регистрация
  • 0PHP Postgtres Создать CSV-файл для загрузки
  • 0Вставка нескольких значений из запроса на выборку в один столбец JTable в Java
  • 1Прочитать файл с несколькими свойствами в build.xml
  • 0Как добавить оператор if, чтобы исключить определенные пустые строки
  • 1Чтение определенного элемента XML
  • 0создать действие javascript из результата оператора php if / else
  • 0Доступ к вершинам сетки
  • 1Разбор строки данных: split против регулярного выражения
  • 1Почему эта нарезка бросает IndexError?
  • 0как сделать ссылку на изображение php открытой в новом окне
  • 0JQuery — слияние / несколько $ (это) My в той же функции
  • 0Как правильно выполнить sql в скриптах с закрытыми классами
  • 0Как читать файл .txt символ за символом без <iostream>?
  • 0Угловой JS by-src
  • 0Удаление из таблицы с использованием PHP и MySQL

Solution 1

I had this situation on the production server while on development machine everything was OK.

Installing .NET Framework 4.6 on the target machine has fixed the problem.

Solution 2

Sorry for being late to the party, but in case someone else gets this problem via a TeamCity build, I can describe what we had to do.

.NET 4.6 was installed on our build server (but not on the application server), and the RunnerType was Visual Studio (sln) and the Visual Studio option was set to 2015.

This forced the build to use 4.6, and I needed to change the Visual Studio option to 2013 to force the build to use 4.5.2

Solution 3

Just For others facing this situation:

if you look in the web.config file you will realize that in <compilation> tag you have the value targetFramework set to a version below 4.6. but in fact , at build time you published your application via .NET FrameWork 4.6 or above (Corresponds to ASP.NET MVC 4.6 and above).

So if you change the value of targetFramework to 4.6 the error will change shape into :

The ‘targetFramework’ attribute currently references a version that is later than the installed version of the .NET Framework.

this is the real error and you will get rid of it by installing appropriate Version of .Net FrameWork in production environment of your Web App.

Solution 4

Updating the .NET Framework to its latest (4.7.2) resolved the issue.
Thanks to @Andrey Kovalenko for solution.

But should not the error be like,

enter image description here

I am not sure telling each customer about updating their .NET Framework is applicable. I had this issue especially at Windows Embedded OS installed system, only at production environment.

Is there any other way to overcome the behavior, from our code base itself.?

Solution 5

I try these solution without success.

The solution for me was go to the application pool, turn to 2.0, execute the site on browser, see the error (because the version is wrong) and turn back to 4.0 and «voilà», I got it, the website open.

Comments

  • I created a new app with VS 2015 RC and the MVC template and without modifying any line of code I have this error:

    Method not found: '!!0[] System.Array.Empty()'.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    
    Exception Details: System.MissingMethodException: Method not found: '!!0[] System.Array.Empty()'.
    
    Source Error:
    
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    
    Stack Trace:
    
    
    [MissingMethodException: Method not found: '!!0[] System.Array.Empty()'.]
       SAASApp.BundleConfig.RegisterBundles(BundleCollection bundles) in C:ProyectosSAASAppSAASAppApp_StartBundleConfig.cs:29
       SAASApp.MvcApplication.Application_Start() in C:ProyectosSAASAppSAASAppGlobal.asax.cs:18
    
    [HttpException (0x80004005): Method not found: '!!0[] System.Array.Empty()'.]
       System.Web.HttpApplicationFactory.EnsureAppStartCalledForIntegratedMode(HttpContext context, HttpApplication app) +483
       System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr appContext, HttpContext context, MethodInfo[] handlers) +118
       System.Web.HttpApplication.InitSpecial(HttpApplicationState state, MethodInfo[] handlers, IntPtr appContext, HttpContext context) +176
       System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr appContext, HttpContext context) +350
       System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext) +305
    
    [HttpException (0x80004005): Method not found: '!!0[] System.Array.Empty()'.]
       System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +661
       System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +96
       System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +189
    

    First time it happens to me, so I am stuck at the moment

  • A good colleague of mine pointed out to me that you can build with Visual Studio 2015 if your build agent has the requirement DotNetFrameworkTargetingPack4.5.2_Path TeamCity will then build the solution towards 4.5.2, even if 4.6 is installed

  • I resolved this issue by using the 4.5.2 dev pack as @gman suggested. In situations where you don’t want to have 4.6 installed, this seems like a better solution.

  • Asking after many years, this is for you @Dougc. I am in a similar situation, i don’t want 4.6 installed and i have 4.5.2 installed. Still i get this issue. What is it that gman suggested??

  • @singsuyash, in the project configuration, go to Agent Requirements. There you click add new requirement. Type DotNetFrameworkTargetingPack4.5.2_Path in the parameter name and set condition to exist.

  • PC LOAD LETTER!

  • Thank you. Most likely what is happening is that: — The code is compiling against .NET 4.6, where the reference assemblies include Array.Empty<T>(). — The Roslyn compiler sees that Array.Empty<T> is available and so uses it when generating the empty array needed for the params. — The compiled app is trying to run on .NET 4.5 where Array.Empty doesn’t exit.

  • However, after you do this, and depending on the project template selected when the application was created, if you have the insight and codeDom applications installed, you may have to uninstall them as I did. I received an array error which traced back to roslyn and Microsoft Application Insight.

  • Our Windows 2008R2 Server had to restart once after installation.

  • Targeting older .NET Framework (4.0 Client Profile) for my project and all DLL projects also worked. :)

  • I installed .net461 but still had the same error. Installing net472 did the trick for me

Recents

Related

Студворк — интернет-сервис помощи студентам

Скачал паскаль, запустил и когда пытаюсь написать что-то, то пишет ошибку

Ошибка в паскале

Подробная информация об использовании оперативной
(JIT) отладки вместо данного диалогового
окна содержится в конце этого сообщения.

************** Текст исключения **************
System.MissingMethodException: Метод не найден: «!!0[] System.Array.Empty()».
в VisualPascalABC.Form1.TextArea_KeyEventHandler(Char ch)
в ICSharpCode.TextEditor.KeyEventHandler.Invoke(Char ch)
в ICSharpCode.TextEditor.TextArea.SimulateKeyPress(Char ch)
в ICSharpCode.TextEditor.TextArea.OnKeyPress(KeyPressEventArgs e)
в System.Windows.Forms.Control.ProcessKeyEventArgs(Message& m)
в System.Windows.Forms.Control.WmKeyChar(Message& m)
в System.Windows.Forms.Control.WndProc(Message& m)
в System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

************** Загруженные сборки **************
mscorlib
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
—————————————-
PascalABCNET
Версия сборки: 3.5.1.2256
Версия Win32: 3.5.1.2256
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/PascalABCNET.exe
—————————————-
System
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34239 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
—————————————-
System.Core
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
—————————————-
System.Windows.Forms
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34250 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
—————————————-
System.Drawing
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.36337 built by: FX452RTMLDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
—————————————-
PluginsSupport
Версия сборки: 1.0.0.0
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/PluginsSupport.DLL
—————————————-
Errors
Версия сборки: 3.5.1.2256
Версия Win32: 3.5.1.2256
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/Errors.DLL
—————————————-
CompilerTools
Версия сборки: 3.5.1.2256
Версия Win32: 3.5.1.2256
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/CompilerTools.DLL
—————————————-
WeifenLuo.WinFormsUI.Docking
Версия сборки: 2.2.5489.36547
Версия Win32: 2.2.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/WeifenLuo.WinFormsUI.Docking.DLL
—————————————-
Compiler
Версия сборки: 3.5.1.2256
Версия Win32: 3.5.1.2256
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/Compiler.DLL
—————————————-
Debugger.Core
Версия сборки: 3.0.0.2649
Версия Win32: 3.0.0.2649
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/Debugger.Core.DLL
—————————————-
Localization
Версия сборки: 1.0.0.0
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/Localization.DLL
—————————————-
CodeCompletion
Версия сборки: 1.0.0.0
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/CodeCompletion.DLL
—————————————-
System.Configuration
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
—————————————-
System.Xml
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34281 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
—————————————-
System.Windows.Forms.resources
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.36213 built by: FX452RTMLDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.resources/v4.0_4.0.0.0_ru_b77a5c561934e089/System.Windows.Forms.resources.dll
—————————————-
ICSharpCode.TextEditor
Версия сборки: 0.0.0.0
Версия Win32: 0.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/ICSharpCode.TextEditor.DLL
—————————————-
ParserTools
Версия сборки: 3.5.1.2256
Версия Win32: 3.5.1.2256
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/ParserTools.DLL
—————————————-
SyntaxTree
Версия сборки: 3.5.1.2256
Версия Win32: 3.5.1.2256
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/SyntaxTree.DLL
—————————————-
Accessibility
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.33440 built by: FX45W81RTMREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
—————————————-
PresentationFramework
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34292
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.dll
—————————————-
WindowsBase
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34292 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
—————————————-
PresentationCore
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34292 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll
—————————————-
ICSharpCode.SharpDevelop
Версия сборки: 4.2.1.0
Версия Win32: 4.2.1.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/ICSharpCode.SharpDevelop.DLL
—————————————-
ICSharpCode.Core
Версия сборки: 4.2.1.0
Версия Win32: 4.2.1.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/ICSharpCode.Core.DLL
—————————————-
ICSharpCode.SharpDevelop.Dom
Версия сборки: 4.2.1.8805
Версия Win32: 4.2.1.8805
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/ICSharpCode.SharpDevelop.Dom.DLL
—————————————-
ICSharpCode.NRefactory
Версия сборки: 4.2.1.8805
Версия Win32: 4.2.1.8805
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/ICSharpCode.NRefactory.DLL
—————————————-
ICSharpCode.AvalonEdit
Версия сборки: 4.2.1.8805
Версия Win32: 4.2.1.8805
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/ICSharpCode.AvalonEdit.DLL
—————————————-
ICSharpCode.Core.Presentation
Версия сборки: 4.2.1.0
Версия Win32: 4.2.1.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/ICSharpCode.Core.Presentation.DLL
—————————————-
ICSharpCode.SharpDevelop.Widgets
Версия сборки: 4.2.1.8805
Версия Win32: 4.2.1.8805
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/ICSharpCode.SharpDevelop.Widgets.DLL
—————————————-
ICSharpCode.Core.WinForms
Версия сборки: 4.2.1.0
Версия Win32: 4.2.1.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/ICSharpCode.Core.WinForms.DLL
—————————————-
System.Design
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Design/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Design.dll
—————————————-
System.Data
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
—————————————-
TreeConverter
Версия сборки: 3.5.1.2256
Версия Win32: 3.5.1.2256
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/TreeConverter.DLL
—————————————-
NETGenerator
Версия сборки: 3.5.1.2256
Версия Win32: 3.5.1.2256
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/NETGenerator.DLL
—————————————-
SyntaxTreeConverters
Версия сборки: 1.0.0.0
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/SyntaxTreeConverters.DLL
—————————————-
SemanticTree
Версия сборки: 3.5.1.2256
Версия Win32: 3.5.1.2256
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/SemanticTree.DLL
—————————————-
System.Numerics
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
—————————————-
PascalABCParser
Версия сборки: 0.0.0.0
Версия Win32: 0.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/PascalABCParser.DLL
—————————————-
OptimizerConversion
Версия сборки: 1.0.0.0
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/OptimizerConversion.DLL
—————————————-
InternalErrorReport
Версия сборки: 1.0.7228.37980
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/InternalErrorReport.DLL
—————————————-
PT4Provider
Версия сборки: 1.0.0.0
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/PT4Provider.DLL
—————————————-
PT4Tools
Версия сборки: 1.0.0.0
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/PT4Tools.DLL
—————————————-
SharpDisasm
Версия сборки: 1.0.0.0
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/SharpDisasm.DLL
—————————————-
SyntaxVisitors
Версия сборки: 1.0.0.0
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/SyntaxVisitors.DLL
—————————————-
YieldHelpers
Версия сборки: 1.0.0.0
Версия Win32: 1.0.0.0
CodeBase: file:///C:/Program%20Files%20(x86)/PascalABC.NET/YieldHelpers.DLL
—————————————-
mscorlib.resources
Версия сборки: 4.0.0.0
Версия Win32: 4.0.30319.34209 built by: FX452RTMGDR
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/mscorlib.resources/v4.0_4.0.0.0_ru_b77a5c561934e089/mscorlib.resources.dll
—————————————-

************** Оперативная отладка (JIT) **************
Для подключения оперативной (JIT) отладки файл .config данного
приложения или компьютера (machine.config) должен иметь
значение jitDebugging, установленное в секции system.windows.forms.
Приложение также должно быть скомпилировано с включенной
отладкой.

Например:

<configuration>
<system.windows.forms jitDebugging=»true» />
</configuration>

При включенной отладке JIT любое необрабатываемое исключение
пересылается отладчику JIT, зарегистрированному на данном компьютере,
вместо того чтобы обрабатываться данным диалоговым окном.

Понравилась статья? Поделить с друзьями:
  • System abs defaillant пежо 307 ошибка
  • Sysprep произошла непредвиденная ошибка
  • Sysprep ошибка установки
  • Sysprep ошибка при запуске
  • Sysprep ошибка 0x0f0070