Skip to content

Commit 0cee444

Browse files
ViktorHoferstephentoub
authored andcommittedOct 19, 2019
Prepare license and other files for the repo consolidation (dotnet#41912)
* Update .azure-ci.yml * Rename LICENSE.TXT to LICENSE and others
1 parent dab6a40 commit 0cee444

File tree

6 files changed

+22
-18
lines changed

6 files changed

+22
-18
lines changed
 

‎.azure-ci.yml

+14-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@ trigger:
1111
paths:
1212
exclude:
1313
- Documentation/*
14-
- /*.md
14+
- CODE-OF-CONDUCT.md
15+
- CONTRIBUTING.md
16+
- LICENSE
17+
- PATENTS.TXT
18+
- README.md
19+
- SECURITY.md
20+
- THIRD-PARTY-NOTICES.TXT
1521

1622
pr:
1723
branches:
@@ -21,7 +27,13 @@ pr:
2127
paths:
2228
exclude:
2329
- Documentation/*
24-
- /*.md
30+
- CODE-OF-CONDUCT.md
31+
- CONTRIBUTING.md
32+
- LICENSE
33+
- PATENTS.TXT
34+
- README.md
35+
- SECURITY.md
36+
- THIRD-PARTY-NOTICES.TXT
2537

2638
resources:
2739
containers:
File renamed without changes.

‎Documentation/building/unix-instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ There is one caveat: you must set the LANG in your shell to something other than
7777
```sh
7878
export LANG=en_US.UTF-8
7979
```
80-
Otherwise you may get errors like `PackagingException: File not found: '/home/dan/git/corefx/LICENSE.TXT'`. More info in [this issue](https://github.com/dotnet/corefx/issues/38608). It is possible this may occur on other distros, if LANG is set as above.
80+
Otherwise you may get errors like `PackagingException: File not found: '/home/dan/git/corefx/LICENSE'`. More info in [this issue](https://github.com/dotnet/corefx/issues/38608). It is possible this may occur on other distros, if LANG is set as above.
8181

8282
We have not tested on WSL2 yet. If you try it out, we'd welcome an update.
8383

‎LICENSE.TXT ‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2020
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2121
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2222
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23-
SOFTWARE.
23+
SOFTWARE.

‎README.md

+4-12
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ This repo contains the library implementation (called "CoreFX") for .NET Core. I
66
The corresponding [.NET Core Runtime repo](https://github.com/dotnet/coreclr) (called "CoreCLR") contains the runtime implementation for .NET Core. It includes RyuJIT, the .NET GC, and many other components.
77
Runtime-specific library code ([System.Private.CoreLib](https://github.com/dotnet/coreclr/tree/master/src/System.Private.CoreLib)) lives in the CoreCLR repo. It needs to be built and versioned in tandem with the runtime. The rest of CoreFX is agnostic of runtime-implementation and can be run on any compatible .NET runtime (e.g. [CoreRT](https://github.com/dotnet/corert)).
88

9-
10-
119
## .NET Core
1210

1311
Official Starting Page: https://dotnet.microsoft.com/
@@ -21,8 +19,6 @@ Official Starting Page: https://dotnet.microsoft.com/
2119
* [Releases](https://github.com/dotnet/core/tree/master/release-notes)
2220
* [Bringing more APIs to .NET Core](https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/porting.md) (and why some APIs will be left out)
2321

24-
25-
2622
## How to Engage, Contribute and Provide Feedback
2723

2824
Some of the best ways to contribute are to try things out, file bugs, join in design conversations, and fix issues.
@@ -66,12 +62,6 @@ Security issues and bugs should be reported privately, via email, to the Microso
6662

6763
Also see info about related [Microsoft .NET Core and ASP.NET Core Bug Bounty Program](https://www.microsoft.com/msrc/bounty-dot-net-core).
6864

69-
## License
70-
71-
.NET Core (including the corefx repo) is licensed under the [MIT license](LICENSE.TXT).
72-
73-
74-
7565
## .NET Foundation
7666

7767
.NET Core is a [.NET Foundation](https://www.dotnetfoundation.org/projects) project.
@@ -81,8 +71,6 @@ There are many .NET related projects on GitHub.
8171
- [.NET home repo](https://github.com/Microsoft/dotnet) - links to 100s of .NET projects, from Microsoft and the community.
8272
- [ASP.NET Core home](https://github.com/aspnet/home) - the best place to start learning about ASP.NET Core.
8373

84-
85-
8674
## CoreFX Project
8775

8876
### Daily Builds
@@ -92,3 +80,7 @@ The latest version number of each library can be seen in that feed.
9280
Currently, there is no website to visualize the contents of the feed, so in order to do so, you have to use a NuGet feed explorer, like Visual Studio.
9381

9482
Note: See officially supported [OS versions](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md).
83+
84+
## License
85+
86+
.NET (including the runtime repo) is licensed under the [MIT](LICENSE) license.

‎eng/Packaging.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project>
22
<PropertyGroup>
33
<PackageDescriptionFile>$(RepoRoot)pkg/descriptions.json</PackageDescriptionFile>
4-
<PackageLicenseFile>$(RepoRoot)LICENSE.TXT</PackageLicenseFile>
4+
<PackageLicenseFile>$(RepoRoot)LICENSE</PackageLicenseFile>
55
<PackageThirdPartyNoticesFile>$(RepoRoot)THIRD-PARTY-NOTICES.TXT</PackageThirdPartyNoticesFile>
66
<RuntimeIdGraphDefinitionFile>$(RepoRoot)pkg/Microsoft.NETCore.Platforms/runtime.json</RuntimeIdGraphDefinitionFile>
77
<ReleaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</ReleaseNotes>
88
<ProjectUrl>https://github.com/dotnet/corefx</ProjectUrl>
9-
<LicenseUrl>https://github.com/dotnet/corefx/blob/master/LICENSE.TXT</LicenseUrl>
9+
<LicenseUrl>https://github.com/dotnet/corefx/blob/master/LICENSE</LicenseUrl>
1010
<!-- defined in buildtools packaging.targets, but we need this before targets are imported -->
1111
<PackagePlatform Condition="'$(PackagePlatform)' == ''">$(Platform)</PackagePlatform>
1212
<PackagePlatform Condition="'$(PackagePlatform)' == 'amd64'">x64</PackagePlatform>

0 commit comments

Comments
 (0)
Please sign in to comment.