Skip to content
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

Add document about redistribution terms #9069

Merged
merged 2 commits into from
Jan 19, 2024
Merged
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
17 changes: 17 additions & 0 deletions license-information.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# License Information

The .NET projects uses the MIT license for source and binaries.

## Third-party code

The project includes source from other projects, as described in third-party notices, for example in the [dotnet/runtime repo](https://github.com/dotnet/runtime/blob/main/THIRD-PARTY-NOTICES.TXT). Only permissively licensed code is allowed, in accordance with [project policies](https://github.com/dotnet/runtime/blob/main/CONTRIBUTING.md#copying-files-from-other-projects).

## Redistribution

Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary.
richlander marked this conversation as resolved.
Show resolved Hide resolved

Parts of the .NET runtime embedded in applications, including [platform-specific executable hosts](https://learn.microsoft.com/dotnet/core/deploying/deploy-with-cli#framework-dependent-executable), and [self-contained deployments](https://learn.microsoft.com/dotnet/core/deploying/deploy-with-cli#self-contained-deployment), are subject to [.NET](https://github.com/dotnet/dotnet/blob/main/LICENSE.TXT) and [third-party notice](https://github.com/dotnet/dotnet/blob/main/THIRD-PARTY-NOTICES.txt) license terms.

Binaries that target Windows are subject to [additional terms](license-information-windows.md).

This document is provided for informative purposes only and is not itself a license.
Loading