This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
Перейти к файлу
Justin Van Patten 9e43252046 Avoid unnecessary intermediate Version allocation (#4349)
`Version..ctor(string)` is implemented by calling `Version.Parse`, which
allocates an intermediate `Version` instance. Avoid the unnecessary
intermediate allocation by using `Version.Parse` directly.
2017-08-21 15:50:21 -07:00
.vscode
Documentation Update VS2017 detection logic to match corefx (#4341) 2017-08-17 16:11:41 -07:00
buildpipeline
buildscripts Check for Visual C++ in buildvars-setup.cmd (#4343) 2017-08-18 10:38:34 -07:00
cross
pkg
src Avoid unnecessary intermediate Version allocation (#4349) 2017-08-21 15:50:21 -07:00
tests
.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
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

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

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.

  • The .NET home repo links to 100s of .NET projects, from Microsoft and the community.
  • The .NET Core repo links to .NET Core related projects from Microsoft.
  • The ASP.NET home repo is the best place to start learning about ASP.NET Core.
  • dotnet.github.io is a good place to discover .NET Foundation projects.