使用CoreRT和Dapper编译.Net Core Console App

时间:2019-03-04 23:22:13

标签: c# compilation .net-core dapper corert

我正尝试使用CoreRT将代码(.net核心控制台应用程序)编译为win-x64的本机.exe。我一直可以按照文档进行操作,直到该部分涉及反射和使用rd.xml文件为止,这是我目前遇到的问题。

我的项目使用Dapper作为ORM,它依赖于反射来绑定数据库中的对象。我只能绑定2种不同的类型,因此我的假设是我需要在rd.xml中包括这些类型。

现在,当我尝试从.net core cli运行dotnet publish -r win-x64 -c release时,它成功完成,但是在运行时,我的编译后的.exe会引发带有以下代码段的异常:

  

--->(内部异常#0)System.TypeInitializationException:类型初始值设定项引发了异常。要确定哪种类型,请检查   InnerException的StackTrace属性。 ->   EETypeRva:0x01202268(System.Reflection.MissingRuntimeArtifactException):   无法调用该对象,因为它已针对   仅浏览:   'Dapper.SqlMapper.TypeHandlerCache .SetHandler(Dapper.SqlMapper.ITypeHandler)'   有关更多信息,请访问   http://go.microsoft.com/fwlink/?LinkID=616867

我的rd.xml文件如下:

<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
  <Application>
        <Type Name="Dapper.SqlMapper.TypeHandlerCache{System.Data.DataTable}">
          <MethodInstantiation Name="SetHandler" Arguments="Dapper.SqlMapper.ITypeHandler" Dynamic="Required" />
      </Type>
  </Application>
</Directives>

我假设我需要在此处包括对我的模型的引用,这些引用将分别是FooBar,但是抛出的错误是专门针对Dapper的。

rd.xml文件在我的项目目录中,并且在MyProject.csproj中被引用,如下所示:

<ItemGroup> <EmbeddedResource Include="rd.xml" /> </ItemGroup>

我想知道这个问题是由于我的结构(也许应该以其他方式引用rd.xml)还是由于rd.xml文件的内容。有人处理过这个问题,还是在使用Dapper的项目中使用了CoreRT?

2 个答案:

答案 0 :(得分:1)

尝试将其添加到指令中:

<Assembly Name="System.Data.Common">
    <Type Name="System.Data.DataTable" Dynamic="Required All"/>
</Assembly>

答案 1 :(得分:1)

要成功编译我的项目,我必须执行以下操作:

  • 在System.Data.SqlClient nuget包中包含所有引用作为项目引用。在这种情况下,我还包括了System.Configuration.ConfigurationManager。

  • 从命令行发布所需的操作系统:dotnet publish -r win-x64

  • 从发布路径中将System.Data.SqlClient.dll和sni.dll文件复制到固定路径:.. \ SQLClient \ win-x64 \

  • 在csproj文件中,有条件地对nuget程序包和已发布的dll进行条件引用,在这种情况下,通过参数MSBuild NativeCompilation。

  • 最后,从命令行使用CoreRT发布:dotnet publish -r win-x64 / p:NativeCompilation = true

成功了!


GetIPVersionSQLSRV.csproj

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFramework>netcoreapp2.2</TargetFramework>
    <OutputType>Exe</OutputType>
  </PropertyGroup>

  <ItemGroup Condition="'$(BuildingInsideVisualStudio)' == 'true' OR '$(NativeCompilation)' != 'true'">
    <!--System.Data.SqlClient Nuget Reference -->
    <PackageReference Include="System.Data.SqlClient" Version="4.6.1" />
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="System.Configuration.ConfigurationManager" Version="4.5.0" />
    <!--System.Data.SqlClient References-->
    <PackageReference Include="Microsoft.Win32.Registry" Version="4.5.0" />
    <PackageReference Include="System.Security.AccessControl" Version="4.5.0" />
    <PackageReference Include="System.Security.Principal.Windows" Version="4.5.0" />
    <PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.0" />
    <!--System.Configuration.ConfigurationManager References-->
    <PackageReference Include="System.Security.Cryptography.ProtectedData" Version="4.5.0" />
    <PackageReference Include="System.Security.Permissions" Version="4.5.0" />
  </ItemGroup>

  <ItemGroup Condition="'$(BuildingInsideVisualStudio)' != 'true' AND '$(NativeCompilation)'=='true'">
    <!-- ILCompiler and rd.xml -->
    <PackageReference Include="Microsoft.DotNet.ILCompiler" Version="1.0.0-alpha-*" />
    <RdXmlFile Include="rd.xml" />
    <!--System.Data.SqlClient published Dll Reference -->
    <Reference Include="System.Data.SqlClient">
      <HintPath>..\SQLClient\win-x64\System.Data.SqlClient.dll</HintPath>
    </Reference>
  </ItemGroup>

</Project>

Program.cs

using System;
using System.Configuration;
using System.Data.SqlClient;
using System.IO;
using System.Net;

namespace GetIPVersionSQLSRV
{
    class Program
    {
        private static String config = ConfigurationManager.AppSettings["texto"];
        private static String cadena = ConfigurationManager.ConnectionStrings["default"].ConnectionString;
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World! " + config);
            using(SqlConnection conn = new SqlConnection(cadena))
            {
                conn.Open();
                using (SqlCommand comm = new SqlCommand("SELECT @@VERSION;", conn))
                    Console.WriteLine(comm.ExecuteScalar());
            }
            HttpWebRequest req = (HttpWebRequest)WebRequest.Create(@"http://api.ipify.org?format=json");
            using (HttpWebResponse res = (HttpWebResponse)req.GetResponse())
            using (Stream strm = res.GetResponseStream())
            using (StreamReader read = new StreamReader(strm))
                Console.WriteLine(read.ReadToEnd());
            req = null;

            Console.ReadKey(false);
        }
    }
}

App.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="texto" value="CONFIG2"/>
  </appSettings>
  <connectionStrings>
    <add name="default" connectionString="User ID=user;PWD=p455w0rd;Initial Catalog=master;Data Source=localhost"/>
  </connectionStrings>
</configuration>

rd.xml

<Directives>
    <Application>
        <Assembly Name="System.Configuration.ConfigurationManager">
            <Type Name="System.Configuration.ClientConfigurationHost" Dynamic="Required All"/>
            <Type Name="System.Configuration.AppSettingsSection" Dynamic="Required All"/>
        </Assembly>
    </Application>
</Directives>

nuget.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
 <packageSources>
    <!--To inherit the global NuGet package sources remove the <clear/> line below -->
    <add key="dotnet-core"
  value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json"/>
<add key="nuget.org"
  value="https://api.nuget.org/v3/index.json" protocolVersion="3"/>
    <add key="nuget" value="https://api.nuget.org/v3/index.json" />
 </packageSources>
</configuration>