• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..24-Aug-2018-

.vscode/H24-Aug-2018-4948

Documentation/H24-Aug-2018-993668

buildpipeline/H24-Aug-2018-2,3512,345

buildscripts/H03-May-2022-1,238925

cross/H03-May-2022-1,012793

pkg/H24-Aug-2018-243199

samples/WebApi/H24-Aug-2018-386305

src/H24-Aug-2018-713,843507,057

tests/H03-May-2022-14,84812,124

.editorconfigH A D24-Aug-20185.8 KiB161131

.gitattributesH A D24-Aug-20182.6 KiB6963

.gitignoreH A D24-Aug-20183.5 KiB291231

.gitmirrorallH A D24-Aug-201863 11

NuGet.configH A D24-Aug-20181,017 2419

Packaging.propsH A D24-Aug-20183.2 KiB6053

README.mdH A D24-Aug-20184.1 KiB5035

build.cmdH A D24-Aug-20181.1 KiB5436

build.projH A D24-Aug-2018681 2315

build.shH A D03-May-2022733 3318

dependencies.propsH A D24-Aug-2018660 1211

dir.propsH A D24-Aug-201812.3 KiB269230

dir.targetsH A D24-Aug-20182.6 KiB5443

dir.traversal.targetsH A D24-Aug-20182.4 KiB6147

init-tools.cmdH A D24-Aug-20184.1 KiB8065

init-tools.msbuildH A D24-Aug-2018519 1111

init-tools.shH A D03-May-20226.9 KiB162128

netci.groovyH A D24-Aug-20184.5 KiB10489

README.md

1# .NET Core Runtime (CoreRT)
2This repo contains the .NET Core runtime optimized for AOT compilation
3
4## Platform Support
5
6This is a work in progress. The current state of platform support:
7- Windows x64 w/ RyuJIT codegen: Simple ASP.NET apps [compile and run](https://github.com/dotnet/corert/tree/master/samples/WebApi)
8- MacOS and Linux x64 w/ RyuJIT codegen: Same as Windows, the libraries are less complete.
9- Linux ARM w/ RyuJIT codegen: ElmSharp Hello Tizen application ([detailed status](https://github.com/dotnet/corert/issues/4856))
10- CppCodeGen (targets all platforms that support C++): Simple C# programs. The big missing features are [reflection](https://github.com/dotnet/corert/issues/2035), [garbage collection](https://github.com/dotnet/corert/issues/2033) and [exception handling](https://github.com/dotnet/corert/issues/910).
11- WebAssembly: Early prototype that compiles and runs very trivial programs only. Many features are [not yet implemented](https://github.com/dotnet/corert/issues?q=is%3Aissue+is%3Aopen+label%3Aarch-wasm).
12
13## How to Engage, Contribute and Provide Feedback
14Some of the best ways to contribute are to try things out, file bugs, and join in design conversations.
15
16Looking for something to work on? The [_up for grabs_](https://github.com/dotnet/corert/labels/up-for-grabs) issues are a great place to start or take a look at our [documentation](Documentation).
17
18This project follows the [.NET Core Contribution Guidelines](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/contributing.md).
19
20[![Join the chat at https://gitter.im/dotnet/corert](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/dotnet/corert?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
21
22### Reporting security issues and security bugs
23
24Security issues and bugs should be reported privately, via email, to the
25Microsoft Security Response Center (MSRC) <secure@microsoft.com>. You should
26receive a response within 24 hours. If for some reason you do not, please follow
27up via email to ensure we received your original message. Further information,
28including the MSRC PGP key, can be found in the
29[Security TechCenter](https://technet.microsoft.com/en-us/security/ff852094.aspx).
30
31## License
32The CoreRT Repo is licensed under the [MIT license](https://github.com/dotnet/corert/blob/master/LICENSE.TXT).
33
34## .NET Foundation
35CoreRT is a [.NET Foundation](http://www.dotnetfoundation.org/projects) project.
36
37This project has adopted the code of conduct defined by the [Contributor Covenant](http://contributor-covenant.org/) to clarify expected behavior in our community. For more information, see the [.NET Foundation Code of Conduct](http://www.dotnetfoundation.org/code-of-conduct).
38
39## Related Projects
40There are many .NET related projects on GitHub.
41- The [.NET home repo](https://github.com/Microsoft/dotnet) links to 100s of .NET projects, from Microsoft and the community.
42- The [ASP.NET home repo](https://github.com/aspnet/home) is the best place to start learning about [ASP.NET Core](http://www.asp.net).
43
44## Build Status
45
46|         |Ubuntu 14.04 |Windows |Mac OS X |
47|---------|:------:|:------:|:------:|
48|**Debug**|[![Build status](https://ci.dot.net/job/dotnet_corert/job/master/job/debug_ubuntu/badge/icon)](https://ci.dot.net/job/dotnet_corert/job/master/job/debug_ubuntu/)|[![Build status](https://ci.dot.net/job/dotnet_corert/job/master/job/debug_windows_nt/badge/icon)](https://ci.dot.net/job/dotnet_corert/job/master/job/debug_windows_nt/)|[![Build Status](https://ci.dot.net/job/dotnet_corert/job/master/job/debug_osx10.12/badge/icon)](https://ci.dot.net/job/dotnet_corert/job/master/job/debug_osx10.12/)|
49|**Release**|[![Build status](https://ci.dot.net/job/dotnet_corert/job/master/job/release_ubuntu/badge/icon)](https://ci.dot.net/job/dotnet_corert/job/master/job/release_ubuntu/)|[![Build status](https://ci.dot.net/job/dotnet_corert/job/master/job/release_windows_nt/badge/icon)](https://ci.dot.net/job/dotnet_corert/job/master/job/release_windows_nt/)|[![Build Status](https://ci.dot.net/job/dotnet_corert/job/master/job/release_osx10.12/badge/icon)](https://ci.dot.net/job/dotnet_corert/job/master/job/release_osx10.12/)|
50