Skip to content

Change "Documentation" folder to "docs" #87

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ All commits in a pull request will be squashed to a single commit with the origi

# Contributing

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

# Developers

See the [Developer Guide](Documentation/project-docs/developer-guide.md) for details about developing in this repo.
See the [Developer Guide](docs/project-docs/developer-guide.md) for details about developing in this repo.
11 changes: 6 additions & 5 deletions Microsoft.ML.sln
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,14 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ML.Sweeper", "src
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{E20AF96D-3F66-4065-8A89-BEE479D74536}"
ProjectSection(SolutionItems) = preProject
Documentation\README.md = Documentation\README.md
docs\README.md = docs\README.md
docs\release-notes\0.1\release-0.1.md = docs\release-notes\0.1\release-0.1.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project-docs", "project-docs", "{52794B40-AB8A-41AF-9EF7-799C80D6E0BC}"
ProjectSection(SolutionItems) = preProject
Documentation\project-docs\contributing.md = Documentation\project-docs\contributing.md
Documentation\project-docs\developer-guide.md = Documentation\project-docs\developer-guide.md
docs\project-docs\contributing.md = docs\project-docs\contributing.md
docs\project-docs\developer-guide.md = docs\project-docs\developer-guide.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{76F579E4-B9D2-4A0C-A511-EEFA4B2B829F}"
Expand All @@ -76,8 +77,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "building", "building", "{DB751004-5D49-4B88-B78F-29CA9887087D}"
ProjectSection(SolutionItems) = preProject
Documentation\building\unix-instructions.md = Documentation\building\unix-instructions.md
Documentation\building\windows-instructions.md = Documentation\building\windows-instructions.md
docs\building\unix-instructions.md = docs\building\unix-instructions.md
docs\building\windows-instructions.md = docs\building\windows-instructions.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "specs", "specs", "{2DEFC784-F2B5-44EA-ABBB-0DCF3E689DAC}"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Along with these ML capabilities this first release of ML.NET also brings the fi

ML.NET runs on Windows, Linux, and macOS - any platform where 64 bit [.NET Core](https://github.com/dotnet/core) or later is available.

The current release is 0.1. Check out the [release notes](Documentation/release-notes/0.1/release-0.1.md).
The current release is 0.1. Check out the [release notes](docs/release-notes/0.1/release-0.1.md).

First ensure you have installed [.NET Core 2.0](https://www.microsoft.com/net/learn/get-started) or later. ML.NET also works on the .NET Framework. Note that ML.NET currently must run in a 64 bit process.

Expand All @@ -34,7 +34,7 @@ Or alternatively you can add the Microsoft.ML package from within Visual Studio'

## Building

To build ML.NET from source please visit our [developers guide](Documentation/project-docs/developer-guide.md).
To build ML.NET from source please visit our [developers guide](docs/project-docs/developer-guide.md).

| | x64 Debug | x64 Release |
|:---|----------------:|------------------:|
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dotnet add package Microsoft.ML

From package manager:
```
Install-Package Microsoft.ML
Install-Package Microsoft.ML
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we adding these spaces here?

```

Or from within Visual Studio's NuGet package manager.
Expand Down
File renamed without changes.