dotnet / corert

This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.

Home Page:http://dot.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can not use Namespace node in rd.xml

kengwang opened this issue · comments

I cannot publish my project. After I configured rd.xml according to the URL dotnet still reported an error.

EXEC : warning : RD.XML processing will change before release (https://github.com/dotnet/corert/issues/5001) [......\EasyCraft\EasyCraft.csproj]
EXEC : error : "Namespace" is not a supported Runtime Directive. [.......\EasyCraft\EasyCraft.csproj]

I want to reflect all types under this namespace in rd.xml, how to?

PS: My English is not very good.

My Project rd.xml
https://github.com/EasyCraftPanel/EasyCraft/blob/master/EasyCraft/rd.xml

CoreRT uses a different rd.xml dialect which is documented here https://github.com/dotnet/corert/blob/master/Documentation/using-corert/rd-xml-format.md

CoreRT uses a different rd.xml dialect which is documented here https://github.com/dotnet/corert/blob/master/Documentation/using-corert/rd-xml-format.md

Is Namespace not available for the time being?

No, you need to list the types individually.

No, you need to list the types individually.

Thanks. Hope it will be avalible in the near future😂