Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kant2002/rdxmllibrary
Library of RD.xml files for NativeAOT
https://github.com/kant2002/rdxmllibrary
corert nativeaot
Last synced: 4 days ago
JSON representation
Library of RD.xml files for NativeAOT
- Host: GitHub
- URL: https://github.com/kant2002/rdxmllibrary
- Owner: kant2002
- License: mit
- Created: 2022-02-05T08:17:15.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-25T04:49:42.000Z (over 1 year ago)
- Last Synced: 2024-11-02T03:50:17.941Z (11 days ago)
- Topics: corert, nativeaot
- Language: C#
- Homepage:
- Size: 876 KB
- Stars: 52
- Watchers: 5
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RdXmlLibrary
Library of RD.xml files for NativeAOT## Introduction
Currently compiling existing application using NativeAOT is non-trivial task where you should refactor you application, nudge ILC to add nescessary types missed during static analysis due to required reflection usage, etc.
This project want reduce pain during RD.xml creation by providing set of RD.xml files for libraries in the ecosystem.
## How to use
Look at the libraries which your app is using and add nescessary rd.xml files. For example if you using Avalonia and Sqlite with EF Core, copy files `Avalonia.rd.xml`, `Microsoft.EntityFrameworkCore.rd.xml` and `Microsoft.EntityFrameworkCore.Sqlite.rd.xml` to your app entry project, and add following snipped to your project file.
```
```
After that, if you need put customizations which are specific to your app, put them into `rd.xml` file.
## Related projects
- EF Core NativeAOT RdGenerator https://github.com/hez2010/EFCore.NativeAOT.RdGenerator
## Testing
```
dotnet test tests/
```## License
This project is licensed under MIT.