summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZlatko Knezevic <zlakne@microsoft.com>2015-06-10 07:43:33 -0700
committerblackdwarf <zlakne@zlakne-bigun.redmond.corp.microsoft.com>2015-06-10 09:50:37 -0700
commit09ad260f28df803cf288cecd5aa681c81f7bfa13 (patch)
treef4e4878a754ef1060d6cc7ded9f56a1e54c95285
parent8d3936bff7ae46a5a964b15b5f0bc3eb8d4e32db (diff)
downloadcoreclr-09ad260f28df803cf288cecd5aa681c81f7bfa13.tar.gz
coreclr-09ad260f28df803cf288cecd5aa681c81f7bfa13.tar.bz2
coreclr-09ad260f28df803cf288cecd5aa681c81f7bfa13.zip
Fixing for comments in #1114
-rw-r--r--Documentation/README.md22
-rw-r--r--Documentation/botr/method-descriptor.md4
-rw-r--r--Documentation/botr/ryujit-overview.md2
-rw-r--r--Documentation/botr/type-system.md2
-rw-r--r--Documentation/building/testing-with-corefx.md2
-rw-r--r--Documentation/dotnetcore-intro.md4
-rw-r--r--Documentation/install/get-dotnetcore-dnx-linux.md (renamed from Documentation/installing/get-dotnetcore-dnx-linux.md)0
-rw-r--r--Documentation/install/get-dotnetcore-dnx-osx.md (renamed from Documentation/installing/get-dotnetcore-dnx-osx.md)0
-rw-r--r--Documentation/install/get-dotnetcore-dnx-windows.md (renamed from Documentation/installing/get-dotnetcore-dnx-windows.md)0
-rw-r--r--Documentation/install/get-dotnetcore-windows.md (renamed from Documentation/installing/get-dotnetcore-windows.md)0
-rw-r--r--Documentation/project-docs/clr-complus-conf-docgen.sh (renamed from Documentation/miscellaneous/clr-complus-conf-docgen.sh)0
-rw-r--r--Documentation/project-docs/clr-configuration-knobs.md (renamed from Documentation/miscellaneous/clr-configuration-knobs.md)0
-rw-r--r--Documentation/project-docs/dotnet-filenames.md (renamed from Documentation/decoders/dotnet-filenames.md)0
-rw-r--r--Documentation/project-docs/dotnet-standards.md (renamed from Documentation/miscellaneous/dotnet-standards.md)0
-rw-r--r--Documentation/project-docs/glossary.md (renamed from Documentation/decoders/glossary.md)0
-rw-r--r--Documentation/project-docs/jit-testing.md (renamed from Documentation/miscellaneous/jit-testing.md)0
-rw-r--r--README.md2
17 files changed, 19 insertions, 19 deletions
diff --git a/Documentation/README.md b/Documentation/README.md
index 5cd69e7f82..d6b0e75a01 100644
--- a/Documentation/README.md
+++ b/Documentation/README.md
@@ -3,19 +3,23 @@ Documents Index
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.
+Intro to .NET Core
+==================
+
+.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.
+
Learn about .NET Core
====================
-- [Brief Intro to .NET Core](dotnetcore-intro.md)
- [[WIP] Official .NET Core Docs](http://dotnet.readthedocs.org)
Get .NET Core
=============
-- [Get .NET Core DNX SDK on Windows](installing/get-dotnetcore-dnx-windows.md)
-- [Get .NET Core DNX SDK on OS X](installing/get-dotnetcore-dnx-osx.md)
-- [Get .NET Core DNX SDK on Linux](installing/get-dotnetcore-dnx-linux.md)
-- [Get .NET Core (Raw) on Windows](installing/get-dotnetcore-windows.md)
+- [Get .NET Core DNX SDK on Windows](install/get-dotnetcore-dnx-windows.md)
+- [Get .NET Core DNX SDK on OS X](install/get-dotnetcore-dnx-osx.md)
+- [Get .NET Core DNX SDK on Linux](install/get-dotnetcore-dnx-linux.md)
+- [Get .NET Core (Raw) on Windows](install/get-dotnetcore-windows.md)
Project Docs
============
@@ -68,15 +72,15 @@ Book of the Runtime
Decoder Rings
=============
-- [.NET Core Glossary](decoders/glossary.md)
-- [.NET Filename Encyclopedia](decoders/dotnet-filenames.md)
+- [.NET Core Glossary](project-docs/glossary.md)
+- [.NET Filename Encyclopedia](project-docs/dotnet-filenames.md)
Other Information
=================
- [CoreFX Repo documentation](https://github.com/dotnet/corefx/tree/master/Documentation)
- [Porting to .NET Core](https://github.com/dotnet/corefx/blob/master/Documentation/support-dotnet-core-instructions.md)
-- [.NET Standards (Ecma)](miscellaneous/dotnet-standards.md)
-- [CLR Configuration Knobs](miscellaneous/clr-configuration-knobs.md)
+- [.NET Standards (Ecma)](project-docs/dotnet-standards.md)
+- [CLR Configuration Knobs](project-docs/clr-configuration-knobs.md)
- [MSDN Entry for the CLR](http://msdn.microsoft.com/library/8bs2ecf4.aspx)
- [Wikipedia Entry for the CLR](http://en.wikipedia.org/wiki/Common_Language_Runtime)
diff --git a/Documentation/botr/method-descriptor.md b/Documentation/botr/method-descriptor.md
index fec5a2661f..ae548c432f 100644
--- a/Documentation/botr/method-descriptor.md
+++ b/Documentation/botr/method-descriptor.md
@@ -50,11 +50,11 @@ P/Invoke methods. These are methods marked with DllImport attribute.
**EEImpl**
-Delegate methods whose implementation is provided by the runtime (Invoke, BeginInvoke, EndInvoke). See [ECMA 335 Partition II - Delegates](../miscellaneous/dotnet-standards.md).
+Delegate methods whose implementation is provided by the runtime (Invoke, BeginInvoke, EndInvoke). See [ECMA 335 Partition II - Delegates](../project-docs/dotnet-standards.md).
**Array**
-Array methods whose implementation is provided by the runtime (Get, Set, Address). See [ECMA Partition II – Arrays](../miscellaneous/dotnet-standards.md).
+Array methods whose implementation is provided by the runtime (Get, Set, Address). See [ECMA Partition II – Arrays](../project-docs/dotnet-standards.md).
**ComInterop**
diff --git a/Documentation/botr/ryujit-overview.md b/Documentation/botr/ryujit-overview.md
index 9596a5efa3..95e8980424 100644
--- a/Documentation/botr/ryujit-overview.md
+++ b/Documentation/botr/ryujit-overview.md
@@ -536,7 +536,7 @@ Below are some of the most useful `COMPLUS` variables. Where {method-list} is sp
* `COMPLUS_JitTimeLogFile`={file name} – this specifies a log file to which timing information is written.
* `COMPLUS_JitTimeLogCsv`={file name} – this specifies a log file to which summary timing information can be written, in CSV form.
-See also: [CLR Configuration Knobs](../miscellaneous/clr-configuration-knobs.md)
+See also: [CLR Configuration Knobs](../project-docs/clr-configuration-knobs.md)
# Reading a JitDump
diff --git a/Documentation/botr/type-system.md b/Documentation/botr/type-system.md
index 4be4d61f96..ca5f23463a 100644
--- a/Documentation/botr/type-system.md
+++ b/Documentation/botr/type-system.md
@@ -227,7 +227,7 @@ Major entry points are BuildMethodTable, LoadTypeHandleThrowing, CanCastTo\*, Ge
Related Reading
===============
-- [ECMA CLI Specification](../miscellaneous/dotnet-standards.md)
+- [ECMA CLI Specification](../project-docs/dotnet-standards.md)
- [Type Loader](type-loader.md) Book of the Runtime Chapter
- [Virtual Stub Dispatch](virtual-stub-dispatch.md) Book of the Runtime Chapter
- [MethodDesc](method-descriptor.md) Book of the Runtime Chapter
diff --git a/Documentation/building/testing-with-corefx.md b/Documentation/building/testing-with-corefx.md
index c1894a25f7..92b94b9d5c 100644
--- a/Documentation/building/testing-with-corefx.md
+++ b/Documentation/building/testing-with-corefx.md
@@ -7,7 +7,7 @@ In order to do this you need to create a file called `localpublish.props` under
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):
<Project ToolsVersion="12.0" DefaultTargets="Build"
- xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ xmlns="http://schemas.microsoft.com/developer/msbuilding/2003">
<ItemGroup>
<LocalPackages Include="$(PackagesBinDir)">
<PackageName>Microsoft.DotNet.CoreCLR</PackageName>
diff --git a/Documentation/dotnetcore-intro.md b/Documentation/dotnetcore-intro.md
deleted file mode 100644
index 31b1575f8c..0000000000
--- a/Documentation/dotnetcore-intro.md
+++ /dev/null
@@ -1,4 +0,0 @@
-Intro to .NET Core
-==================
-
-.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.
diff --git a/Documentation/installing/get-dotnetcore-dnx-linux.md b/Documentation/install/get-dotnetcore-dnx-linux.md
index 2dc5d89ad1..2dc5d89ad1 100644
--- a/Documentation/installing/get-dotnetcore-dnx-linux.md
+++ b/Documentation/install/get-dotnetcore-dnx-linux.md
diff --git a/Documentation/installing/get-dotnetcore-dnx-osx.md b/Documentation/install/get-dotnetcore-dnx-osx.md
index 0e773aa7c6..0e773aa7c6 100644
--- a/Documentation/installing/get-dotnetcore-dnx-osx.md
+++ b/Documentation/install/get-dotnetcore-dnx-osx.md
diff --git a/Documentation/installing/get-dotnetcore-dnx-windows.md b/Documentation/install/get-dotnetcore-dnx-windows.md
index 6c252cffbd..6c252cffbd 100644
--- a/Documentation/installing/get-dotnetcore-dnx-windows.md
+++ b/Documentation/install/get-dotnetcore-dnx-windows.md
diff --git a/Documentation/installing/get-dotnetcore-windows.md b/Documentation/install/get-dotnetcore-windows.md
index bf0a0ce68e..bf0a0ce68e 100644
--- a/Documentation/installing/get-dotnetcore-windows.md
+++ b/Documentation/install/get-dotnetcore-windows.md
diff --git a/Documentation/miscellaneous/clr-complus-conf-docgen.sh b/Documentation/project-docs/clr-complus-conf-docgen.sh
index b686dca0ab..b686dca0ab 100644
--- a/Documentation/miscellaneous/clr-complus-conf-docgen.sh
+++ b/Documentation/project-docs/clr-complus-conf-docgen.sh
diff --git a/Documentation/miscellaneous/clr-configuration-knobs.md b/Documentation/project-docs/clr-configuration-knobs.md
index b7f456b6d0..b7f456b6d0 100644
--- a/Documentation/miscellaneous/clr-configuration-knobs.md
+++ b/Documentation/project-docs/clr-configuration-knobs.md
diff --git a/Documentation/decoders/dotnet-filenames.md b/Documentation/project-docs/dotnet-filenames.md
index e12f05b18f..e12f05b18f 100644
--- a/Documentation/decoders/dotnet-filenames.md
+++ b/Documentation/project-docs/dotnet-filenames.md
diff --git a/Documentation/miscellaneous/dotnet-standards.md b/Documentation/project-docs/dotnet-standards.md
index 452c703f0a..452c703f0a 100644
--- a/Documentation/miscellaneous/dotnet-standards.md
+++ b/Documentation/project-docs/dotnet-standards.md
diff --git a/Documentation/decoders/glossary.md b/Documentation/project-docs/glossary.md
index a2145d36d2..a2145d36d2 100644
--- a/Documentation/decoders/glossary.md
+++ b/Documentation/project-docs/glossary.md
diff --git a/Documentation/miscellaneous/jit-testing.md b/Documentation/project-docs/jit-testing.md
index 63c6a63dd9..63c6a63dd9 100644
--- a/Documentation/miscellaneous/jit-testing.md
+++ b/Documentation/project-docs/jit-testing.md
diff --git a/README.md b/README.md
index 5d477865a7..19f2fb0af5 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ Get .NET Core
| |Linux |Windows |Mac OS X |FreeBSD |
|---------------------|--------|--------|---------|---------|
|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) |
-|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)||
+|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)||
Chat Room
---------