Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit f258164

Browse files
author
Zlatko Knezevic
committed
Merge pull request #2078 from dotnet/folderization
Add folders to CoreFX Documentation
2 parents 65db1ff + 06a5ba7 commit f258164

23 files changed

+51
-45
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Contributing
22

3-
See [Contributing](Documentation/contributing.md) for information about coding styles, source structure, making pull requests, and more.
3+
See [Contributing](Documentation/project-docs/contributing.md) for information about coding styles, source structure, making pull requests, and more.
44

55
# Developers
66

7-
See the [Developer Guide](Documentation/developer-guide.md) for details about developing in this repo.
7+
See the [Developer Guide](Documentation/project-docs/developer-guide.md) for details about developing in this repo.

Documentation/README.md

Lines changed: 32 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,62 @@
11
Documents Index
22
===============
33

4+
Intro to .NET Core
5+
==================
6+
7+
.NET Core is a self-contained .NET runtime and framework that implements ECMA 335. It can be (and has been) ported to multiple architectures and platforms. It support a variety of installation options, having no specific deployment requirements itself.
8+
49
Learn about .NET Core
510
====================
611

7-
- [Brief Intro to .NET Core](https://github.com/dotnet/coreclr/blob/master/Documentation/dotnetcore-intro.md)
812
- [[WIP] Official .NET Core Docs](http://dotnet.readthedocs.org)
913

1014
Get .NET Core
1115
=============
1216

13-
- [Get .NET Core DNX SDK on Windows](https://github.com/dotnet/coreclr/blob/master/Documentation/get-dotnetcore-dnx-windows.md)
14-
- [Get .NET Core DNX SDK on OS X](https://github.com/dotnet/coreclr/blob/master/Documentation/get-dotnetcore-dnx-osx.md)
15-
- [Get .NET Core DNX SDK on Linux](https://github.com/dotnet/coreclr/blob/master/Documentation/get-dotnetcore-dnx-linux.md)
16-
- [Get .NET Core (Raw) on Windows](https://github.com/dotnet/coreclr/blob/master/Documentation/get-dotnetcore-windows.md)
17+
- [Get .NET Core DNX SDK on Windows](https://github.com/dotnet/coreclr/blob/master/Documentation/install/get-dotnetcore-dnx-windows.md)
18+
- [Get .NET Core DNX SDK on OS X](https://github.com/dotnet/coreclr/blob/master/Documentation/install/get-dotnetcore-dnx-osx.md)
19+
- [Get .NET Core DNX SDK on Linux](https://github.com/dotnet/coreclr/blob/master/Documentation/install/get-dotnetcore-dnx-linux.md)
20+
- [Get .NET Core (Raw) on Windows](https://github.com/dotnet/coreclr/blob/master/Documentation/install/get-dotnetcore-windows.md)
1721

1822
Project Docs
1923
============
2024

21-
- [Developer Guide](developer-guide.md)
22-
- [Project priorities](https://github.com/dotnet/coreclr/blob/master/Documentation/project-priorities.md)
23-
- [Contributing to CoreFX](contributing.md)
24-
- [Contributing to .NET Core](https://github.com/dotnet/coreclr/blob/master/Documentation/contributing.md)
25-
- [Contributing Workflow](https://github.com/dotnet/coreclr/blob/master/Documentation/contributing-workflow.md)
26-
- [Issue Guide](issue-guide.md)
27-
- [Branching Guide](branching-guide.md)
28-
- [API Review Process](api-review-process.md)
29-
- [Strong Name Signing](strong-name-signing.md)
30-
- [Open Source Signing](oss-signing.md)
31-
- [Repo Organization](repo-organization.md)
25+
- [Developer Guide](project-docs/developer-guide.md)
26+
- [Project priorities](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/project-priorities.md)
27+
- [Contributing to CoreFX](project-docs/contributing.md)
28+
- [Contributing to .NET Core](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/contributing.md)
29+
- [Contributing Workflow](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/contributing-workflow.md)
30+
- [Issue Guide](project-docs/issue-guide.md)
31+
- [Branching Guide](project-docs/branching-guide.md)
32+
- [API Review Process](project-docs/api-review-process.md)
33+
- [Strong Name Signing](project-docs/strong-name-signing.md)
34+
- [Open Source Signing](project-docs/oss-signing.md)
35+
- [Repo Organization](project-docs/repo-organization.md)
3236

3337
Coding Guidelines
3438
=================
3539

36-
- [C# coding style](coding-style.md)
37-
- [Framework Design Guidelines](framework-design-guidelines-digest.md)
38-
- [Cross-Platform Guidelines](cross-platform-guidelines.md)
39-
- [Performance Guidelines](performance-guidelines.md)
40-
- [Interop Guidelines](interop-guidelines.md)
41-
- [Breaking Changes](breaking-changes.md)
42-
- [Breaking Change Definitions](breaking-change-definitions.md)
43-
- [Breaking Change Rules](breaking-change-rules.md)
40+
- [C# coding style](coding-guidelines/coding-style.md)
41+
- [Framework Design Guidelines](coding-guidelines/framework-design-guidelines-digest.md)
42+
- [Cross-Platform Guidelines](coding-guidelines/cross-platform-guidelines.md)
43+
- [Performance Guidelines](coding-guidelines/performance-guidelines.md)
44+
- [Interop Guidelines](coding-guidelines/interop-guidelines.md)
45+
- [Breaking Changes](coding-guidelines/breaking-changes.md)
46+
- [Breaking Change Definitions](coding-guidelines/breaking-change-definitions.md)
47+
- [Breaking Change Rules](coding-guidelines/breaking-change-rules.md)
4448

4549
Building from Source
4650
====================
4751

48-
- [Building CoreFX on FreeBSD, Linux and OS X](unix-instructions.md)
49-
- [Code Coverage](code-coverage.md)
52+
- [Building CoreFX on FreeBSD, Linux and OS X](building/unix-instructions.md)
53+
- [Code Coverage](building/code-coverage.md)
5054

5155
Other Information
5256
=================
5357

5458
- [CoreCLR Repo documentation](https://github.com/dotnet/coreclr/tree/master/Documentation)
55-
- [Porting to .NET Core](support-dotnet-core-instructions.md)
56-
- [.NET Standards (Ecma)](https://github.com/dotnet/coreclr/blob/master/Documentation/dotnet-standards.md)
59+
- [Porting to .NET Core](project-docs/support-dotnet-core-instructions.md)
60+
- [.NET Standards (Ecma)](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/dotnet-standards.md)
5761
- [MSDN Entry for the CLR](http://msdn.microsoft.com/library/8bs2ecf4.aspx)
5862
- [Wikipedia Entry for the CLR](http://en.wikipedia.org/wiki/Common_Language_Runtime)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)