How do I make an XML file an embedded resource in a vNext (ASP.NET 5) class library?

后端 未结 2 744
天涯浪人
天涯浪人 2020-12-17 19:42

I have an MVC 6 (vNext/ASP.NET 5) project, with one class library for the DAL(Data Access Layer). Now I am getting an exception because NHibernate can\'t find the mapping fi

2条回答
  •  执念已碎
    2020-12-17 20:11

    Alberto's answer is no longer valid (since RC2), the resource is now marked as deprecated.

    Proper way how to do this is now to use buildOptions/embed:

    ...
    "buildOptions": {
      "emitEntryPoint": true,
      "embed": [ "9NLiZmx.png" ]
    },
    ...
    

提交回复
热议问题