Skip to content

Commit 09ad260

Browse files
Zlatko Knezevicblackdwarf
Zlatko Knezevic
authored and
blackdwarf
committed
Fixing for comments in dotnet#1114
1 parent 8d3936b commit 09ad260

17 files changed

+19
-19
lines changed

Documentation/README.md

+13-9
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,23 @@ Documents Index
33

44
This repo includes several documents that explain both high-level and low-level concepts about the .NET runtime. These are very useful for contributors, to get context that can be very difficult to acquire from just reading code.
55

6+
Intro to .NET Core
7+
==================
8+
9+
.NET Core is a self-contained .NET runtime and framework that implements [ECMA 335](dotnet-standards.md). 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.
10+
611
Learn about .NET Core
712
====================
813

9-
- [Brief Intro to .NET Core](dotnetcore-intro.md)
1014
- [[WIP] Official .NET Core Docs](http://dotnet.readthedocs.org)
1115

1216
Get .NET Core
1317
=============
1418

15-
- [Get .NET Core DNX SDK on Windows](installing/get-dotnetcore-dnx-windows.md)
16-
- [Get .NET Core DNX SDK on OS X](installing/get-dotnetcore-dnx-osx.md)
17-
- [Get .NET Core DNX SDK on Linux](installing/get-dotnetcore-dnx-linux.md)
18-
- [Get .NET Core (Raw) on Windows](installing/get-dotnetcore-windows.md)
19+
- [Get .NET Core DNX SDK on Windows](install/get-dotnetcore-dnx-windows.md)
20+
- [Get .NET Core DNX SDK on OS X](install/get-dotnetcore-dnx-osx.md)
21+
- [Get .NET Core DNX SDK on Linux](install/get-dotnetcore-dnx-linux.md)
22+
- [Get .NET Core (Raw) on Windows](install/get-dotnetcore-windows.md)
1923

2024
Project Docs
2125
============
@@ -68,15 +72,15 @@ Book of the Runtime
6872
Decoder Rings
6973
=============
7074

71-
- [.NET Core Glossary](decoders/glossary.md)
72-
- [.NET Filename Encyclopedia](decoders/dotnet-filenames.md)
75+
- [.NET Core Glossary](project-docs/glossary.md)
76+
- [.NET Filename Encyclopedia](project-docs/dotnet-filenames.md)
7377

7478
Other Information
7579
=================
7680

7781
- [CoreFX Repo documentation](https://github.com/dotnet/corefx/tree/master/Documentation)
7882
- [Porting to .NET Core](https://github.com/dotnet/corefx/blob/master/Documentation/support-dotnet-core-instructions.md)
79-
- [.NET Standards (Ecma)](miscellaneous/dotnet-standards.md)
80-
- [CLR Configuration Knobs](miscellaneous/clr-configuration-knobs.md)
83+
- [.NET Standards (Ecma)](project-docs/dotnet-standards.md)
84+
- [CLR Configuration Knobs](project-docs/clr-configuration-knobs.md)
8185
- [MSDN Entry for the CLR](http://msdn.microsoft.com/library/8bs2ecf4.aspx)
8286
- [Wikipedia Entry for the CLR](http://en.wikipedia.org/wiki/Common_Language_Runtime)

Documentation/botr/method-descriptor.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ P/Invoke methods. These are methods marked with DllImport attribute.
5050

5151
**EEImpl**
5252

53-
Delegate methods whose implementation is provided by the runtime (Invoke, BeginInvoke, EndInvoke). See [ECMA 335 Partition II - Delegates](../miscellaneous/dotnet-standards.md).
53+
Delegate methods whose implementation is provided by the runtime (Invoke, BeginInvoke, EndInvoke). See [ECMA 335 Partition II - Delegates](../project-docs/dotnet-standards.md).
5454

5555
**Array**
5656

57-
Array methods whose implementation is provided by the runtime (Get, Set, Address). See [ECMA Partition II – Arrays](../miscellaneous/dotnet-standards.md).
57+
Array methods whose implementation is provided by the runtime (Get, Set, Address). See [ECMA Partition II – Arrays](../project-docs/dotnet-standards.md).
5858

5959
**ComInterop**
6060

Documentation/botr/ryujit-overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ Below are some of the most useful `COMPLUS` variables. Where {method-list} is sp
536536
* `COMPLUS_JitTimeLogFile`={file name} – this specifies a log file to which timing information is written.
537537
* `COMPLUS_JitTimeLogCsv`={file name} – this specifies a log file to which summary timing information can be written, in CSV form.
538538

539-
See also: [CLR Configuration Knobs](../miscellaneous/clr-configuration-knobs.md)
539+
See also: [CLR Configuration Knobs](../project-docs/clr-configuration-knobs.md)
540540

541541
# Reading a JitDump
542542

Documentation/botr/type-system.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ Major entry points are BuildMethodTable, LoadTypeHandleThrowing, CanCastTo\*, Ge
227227
Related Reading
228228
===============
229229

230-
- [ECMA CLI Specification](../miscellaneous/dotnet-standards.md)
230+
- [ECMA CLI Specification](../project-docs/dotnet-standards.md)
231231
- [Type Loader](type-loader.md) Book of the Runtime Chapter
232232
- [Virtual Stub Dispatch](virtual-stub-dispatch.md) Book of the Runtime Chapter
233233
- [MethodDesc](method-descriptor.md) Book of the Runtime Chapter

Documentation/building/testing-with-corefx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ In order to do this you need to create a file called `localpublish.props` under
77
The contents of the file should look like this (make sure to update the version to the current version of the CoreCLR package used by CoreFx):
88

99
<Project ToolsVersion="12.0" DefaultTargets="Build"
10-
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
10+
xmlns="http://schemas.microsoft.com/developer/msbuilding/2003">
1111
<ItemGroup>
1212
<LocalPackages Include="$(PackagesBinDir)">
1313
<PackageName>Microsoft.DotNet.CoreCLR</PackageName>

Documentation/dotnetcore-intro.md

-4
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Get .NET Core
1717
| |Linux |Windows |Mac OS X |FreeBSD |
1818
|---------------------|--------|--------|---------|---------|
1919
|Build from **Source**| [Instructions](Documentation/building/linux-instructions.md) | [Instructions](Documentation/building/windows-instructions.md) | [Instructions](Documentation/building/osx-instructions.md) | [Instructions](Documentation/building/freebsd-instructions.md) |
20-
|Get **Binaries** | [DNX SDK](Documentation/installing/get-dotnetcore-dnx-linux.md)|[DNX SDK](Documentation/installing/get-dotnetcore-dnx-windows.md) <br> [Raw](Documentation/installing/get-dotnetcore-windows.md)|[DNX SDK](Documentation/installing/get-dotnetcore-dnx-osx.md)||
20+
|Get **Binaries** | [DNX SDK](Documentation/install/get-dotnetcore-dnx-linux.md)|[DNX SDK](Documentation/install/get-dotnetcore-dnx-windows.md) <br> [Raw](Documentation/install/get-dotnetcore-windows.md)|[DNX SDK](Documentation/install/get-dotnetcore-dnx-osx.md)||
2121

2222
Chat Room
2323
---------

0 commit comments

Comments
 (0)