Dev Express .ExpressApp.Win.WinApplication ConfigurationErrorsException: не удалось инициализировать систему конфигурации - PullRequest
0 голосов
/ 13 апреля 2020

Я обновляю свое приложение Framework xaf до .netcoreapp3.0 с xaf 20.1.2-ctp

Когда я запускаю приложение WindowsFormApplication, оно выдает ошибки при вызове MyWindowsFormsApplication

Это исключение было первоначально выдано в стек вызовов:

System.Configuration.ConfigurationSchemaErrors.ThrowIfErrors(bool)
System.Configuration.BaseConfigurationRecord.ThrowIfParseErrors(System.Configuration.ConfigurationSchemaErrors)
System.Configuration.BaseConfigurationRecord.ThrowIfInitErrors()
System.Configuration.ClientConfigurationSystem.EnsureInit(string)

Файл проекта

<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  <PropertyGroup>
    <OutputType>WinExe</OutputType>
    <TargetFramework>netcoreapp3.0</TargetFramework>
    <UseWindowsForms>true</UseWindowsForms>
    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
    <RootNamespace>MySolution.Win</RootNamespace>
    <Deterministic>False</Deterministic>
    <Configurations>Debug;Release;EasyTest</Configurations>
  </PropertyGroup>
  <ItemGroup>
    <Content Include="Model.xafml">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="DevExpress.WindowsDesktop.RichEdit.Export" Version="20.1.2-beta" />
    <PackageReference Include="DevExpress.WindowsDesktop.Win.BonusSkins" Version="20.1.2-ctp" />
    <PackageReference Include="DevExpress.WindowsDesktop.Win.RichEdit" Version="20.1.2-ctp" />
    <PackageReference Include="DevExpress.WindowsDesktop.Win.TreeList" Version="20.1.2-ctp" />
    <PackageReference Include="DevExpress.WindowsDesktop.Win.VerticalGrid" Version="20.1.2-ctp" />
    <PackageReference Include="DevExpress.WindowsDesktop.XAF.EF" Version="20.1.2-ctp" />
    <PackageReference Include="DevExpress.WindowsDesktop.XAF.ExpressApp" Version="20.1.2-ctp" />
    <PackageReference Include="DevExpress.WindowsDesktop.XAF.ExpressApp.Win" Version="20.1.2-ctp" />
    <PackageReference Include="DevExpress.WindowsDesktop.XAF.Persistent.Base" Version="20.1.2-ctp" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\My.Module.Win\My.Module.Win.csproj" />
    <ProjectReference Include="..\My.Module\My.Module.csproj" />
  </ItemGroup>
</Project>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...