This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
Перейти к файлу
t-jekor 18eab60696 Enable CLR Thread Pool via a MSBuild flag (default enabled on Unix)
This PR completes, adds tests for, and enables the CLR Thread Pool on Unix. It also adds Windows implementations for the low level primitives used in the CLR Thread Pool.

The thread pool is enabled by setting the MSBuild property FeaturePortableThreadPool to true, which is the default on Unix.

Supersedes #4039.
Rebased and squashed replacement for original PR #4124.
2017-09-29 07:33:57 -07:00
.vscode
Documentation
buildpipeline
buildscripts
cross
pkg
src Enable CLR Thread Pool via a MSBuild flag (default enabled on Unix) 2017-09-29 07:33:57 -07:00
tests Enable CLR Thread Pool via a MSBuild flag (default enabled on Unix) 2017-09-29 07:33:57 -07:00
.editorconfig
.gitattributes
.gitignore
.gitmirrorall
BuildToolsVersion.txt
DotnetCLIVersion.txt
LICENSE.TXT
NuGet.config
PATENTS.TXT
Packaging.props
README.md
THIRD-PARTY-NOTICES.TXT
build.cmd
build.proj
build.sh
dependencies.props Update CoreFx (#4632) 2017-09-29 05:18:18 -07:00
dir.props
dir.targets
dir.traversal.targets
init-tools.cmd
init-tools.msbuild
init-tools.sh
netci.groovy

README.md

.NET Core Runtime (CoreRT)

This repo contains the .NET Core runtime optimized for AOT compilation

Platform Support

This is a work in progress. The current state of platform support:

  • Windows x64 w/ RyuJIT codegen: Simple ASP.NET apps compile and run with some workarounds
  • MacOS and Linux x64 w/ RyuJIT codegen: Same as Windows, the libraries are less complete.
  • Linux ARM w/ RyuJIT codegen: "Hello world"
  • CppCodeGen (targets all platforms that support C++): Simple C# programs. The big missing features are reflection, garbage collection and exception handling.
  • WebAssembly: Early prototype that compiles and runs very trivial programs only. Many features are not yet implemented.

How to Engage, Contribute and Provide Feedback

Some of the best ways to contribute are to try things out, file bugs, and join in design conversations.

Looking for something to work on? The up for grabs issues are a great place to start or take a look at our documentation.

This project follows the .NET Core Contribution Guidelines.

Join the chat at https://gitter.im/dotnet/corert

Reporting security issues and security bugs

Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) secure@microsoft.com. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the Security TechCenter.

License

The CoreRT Repo is licensed under the MIT license.

.NET Foundation

CoreRT is a .NET Foundation project.

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information, see the .NET Foundation Code of Conduct.

There are many .NET related projects on GitHub.

Build Status

Ubuntu 14.04 Windows Mac OS X
Debug Build status Build status Build Status
Release Build status Build status Build Status