Skip to content

Commit 1e49672

Browse files
authoredMar 16, 2018
Add License and Headers (#66)
* Add license / headers * Add header to msbuild files we publish * PR feedback: fix license url * PR feedback: trim notices, only include copyright in xml files
1 parent 4b524c1 commit 1e49672

19 files changed

+74
-19
lines changed
 

‎Directory.Build.props

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project>
33
<PropertyGroup>
44
<RepositoryUrl>https://github.com/dotnet/arcade</RepositoryUrl>
55
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
6+
<PackageLicenseUrl>$(RepositoryUrl)/LICENSE.txt</PackageLicenseUrl>
67
</PropertyGroup>
78

89
<PropertyGroup>
@@ -21,10 +22,10 @@
2122
</PropertyGroup>
2223

2324
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
24-
<!-- Place 'NetFxTfm' in the 'TargetFramework' property of a csproj to include building framework version if building on Windows but to skip building against the framwork on non-Windows platforms.
25+
<!-- Place 'NetFxTfm' in the 'TargetFramework' property of a csproj to include building framework version if building on
26+
Windows but to skip building against the framwork on non-Windows platforms.
2527
Building targeting the framework is not supported on Linux
2628
ie. <TargetFrameworks>netcoreapp2.0;$(NetFxTfm)</TargetFrameworks> -->
2729
<NetFxTfm>net45</NetFxTfm>
2830
</PropertyGroup>
29-
3031
</Project>

‎LICENSE.TXT

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) .NET Foundation and Contributors
4+
5+
All rights reserved.
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.

‎THIRD-PARTY-NOTICES.TXT

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.NET Core uses third-party libraries or other resources that may be
2+
distributed under licenses different than the .NET Core software.
3+
4+
In the event that we accidentally failed to list a required notice, please
5+
bring it to our attention. Post an issue or email us:
6+
7+
dotnet@microsoft.com
8+
9+
The attached notices are provided for information only.
10+
11+
No notices are provided at this time.

‎src/Microsoft.DotNet.Build.Tasks.Feed/Microsoft.DotNet.Build.Tasks.Feed.nuspec

+2
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,7 @@
2828
<file src="$ArtifactsBinDir$Microsoft.DotNet.Build.Tasks.Feed\net45\*.dll" target="build\net46" />
2929
<file src="build\**" target="build" />
3030
<file src="sdk\**" target="sdk" />
31+
<file src="..\..\LICENSE.TXT" />
32+
<file src="..\..\THIRD-PARTY-NOTICES.TXT" />
3133
</files>
3234
</package>

‎src/Microsoft.DotNet.Build.Tasks.Feed/build/Microsoft.DotNet.Build.Tasks.Feed.targets

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- Copyright (c) .NET Foundation. All rights reserved. -->
12
<Project ToolsVersion="12.0" DefaultTargets="PublishOutputLeg" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
23
<!--
34
Publish targets:

‎src/Microsoft.DotNet.Build.Tasks.Feed/sdk/Sdk.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
1+
<!-- Copyright (c) .NET Foundation. All rights reserved. -->
22
<Project>
33
<!-- Sdk.props file is required to be present for use as an Sdk, we don't have any props that we use though -->
44
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.DotNet.Build.Tasks.Feed.props" Condition="Exists('$(MSBuildThisFileDirectory)..\build\Microsoft.DotNet.Build.Tasks.Feed.props')" />
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
1+
<!-- Copyright (c) .NET Foundation. All rights reserved. -->
22
<Project>
33
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.DotNet.Build.Tasks.Feed.targets" />
44
</Project>

‎src/Microsoft.DotNet.Build.Tasks.Feed/src/common/AzureConnectionStringBuildTask.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using Microsoft.Build.Utilities;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using Microsoft.Build.Utilities;
26
using System.Text.RegularExpressions;
37

48
namespace Microsoft.DotNet.Build.CloudTestTasks

‎src/Microsoft.DotNet.Build.Tasks.IO/Microsoft.DotNet.Build.Tasks.IO.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
12
<Project Sdk="RoslynTools.RepoToolset">
23

34
<PropertyGroup>

‎src/Microsoft.DotNet.Build.Tasks.IO/Microsoft.DotNet.Build.Tasks.IO.nuspec

+2
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,7 @@
3333
<file src="$ArtifactsBinDir$Microsoft.DotNet.Build.Tasks.IO\$NetFxTfm$\Microsoft.DotNet.Build.Tasks.IO.dll" target="build\net45" />
3434
<file src="targets\sdk\**" target="sdk" />
3535
<file src="targets\Microsoft.DotNet.Build.Tasks.IO.props" target="build" />
36+
<file src="..\..\LICENSE.TXT" />
37+
<file src="..\..\THIRD-PARTY-NOTICES.TXT" />
3638
</files>
3739
</package>

‎src/Microsoft.DotNet.Build.Tasks.IO/targets/Microsoft.DotNet.Build.Tasks.IO.props

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- Copyright (c) .NET Foundation. All rights reserved. -->
12
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
23
<PropertyGroup>
34
<_MicrosoftDotNetBuildTasksIOTaskAssembly Condition=" '$(MSBuildRuntimeType)' == 'Core' ">$(MSBuildThisFileDirectory)netcoreapp2.0\Microsoft.DotNet.Build.Tasks.IO.dll</_MicrosoftDotNetBuildTasksIOTaskAssembly>
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- Copyright (c) .NET Foundation. All rights reserved. -->
12
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
2-
<Import Project="..\build\Microsoft.DotNet.Build.Tasks.IO.props" />
3+
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.DotNet.Build.Tasks.IO.props" />
34
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
<!-- Copyright (c) .NET Foundation. All rights reserved. -->
2+
13
<!-- This file is intentionally left blank. -->
24
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"/>

‎test/Microsoft.DotNet.Build.Tasks.IO.Tests/ChmodTests.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
34

45
using System;
56
using System.IO;

‎test/Microsoft.DotNet.Build.Tasks.IO.Tests/DownloadFileTests.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
34

45
using System;
56
using System.IO;

‎test/Microsoft.DotNet.Build.Tasks.IO.Tests/FileHashTests.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
34

45
using System;
56
using System.IO;

‎test/Microsoft.DotNet.Build.Tasks.IO.Tests/MockEngine.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
34

45
using System;
56
using System.Collections;

‎test/Microsoft.DotNet.Build.Tasks.IO.Tests/UnzipArchiveTest.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
34

45
using System;
56
using System.IO;

‎test/Microsoft.DotNet.Build.Tasks.IO.Tests/ZipArchiveTest.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
34

45
using System;
56
using System.Collections.Generic;

0 commit comments

Comments
 (0)
Please sign in to comment.