Skip to content
This repository was archived by the owner on Nov 22, 2018. It is now read-only.

Commit 29041ea

Browse files
committed
Update file headers
1 parent 570a14d commit 29041ea

29 files changed

+468
-29
lines changed

samples/StaticFileSample/Startup.cs

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
using System;
1+
// Copyright (c) Microsoft Open Technologies, Inc.
2+
// All Rights Reserved
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
11+
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
12+
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
13+
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
14+
// NON-INFRINGEMENT.
15+
// See the Apache 2 License for the specific language governing
16+
// permissions and limitations under the License.
17+
18+
using System;
219
using System.IO;
320
using Microsoft.AspNet;
421
using Microsoft.AspNet.Abstractions;

src/Microsoft.AspNet.StaticFiles/Constants.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft Open Technologies, Inc.
2+
// All Rights Reserved
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
11+
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
12+
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
13+
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
14+
// NON-INFRINGEMENT.
15+
// See the Apache 2 License for the specific language governing
16+
// permissions and limitations under the License.
217

318
using System.Threading.Tasks;
419

src/Microsoft.AspNet.StaticFiles/ContentTypes/FileExtensionContentTypeProvider.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft Open Technologies, Inc.
2+
// All Rights Reserved
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
11+
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
12+
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
13+
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
14+
// NON-INFRINGEMENT.
15+
// See the Apache 2 License for the specific language governing
16+
// permissions and limitations under the License.
217

318
using System;
419
using System.Collections.Generic;

src/Microsoft.AspNet.StaticFiles/ContentTypes/IContentTypeProvider.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft Open Technologies, Inc.
2+
// All Rights Reserved
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
11+
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
12+
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
13+
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
14+
// NON-INFRINGEMENT.
15+
// See the Apache 2 License for the specific language governing
16+
// permissions and limitations under the License.
217

318
namespace Microsoft.AspNet.StaticFiles.ContentTypes
419
{

src/Microsoft.AspNet.StaticFiles/DefaultFilesExtensions.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft Open Technologies, Inc.
2+
// All Rights Reserved
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
11+
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
12+
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
13+
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
14+
// NON-INFRINGEMENT.
15+
// See the Apache 2 License for the specific language governing
16+
// permissions and limitations under the License.
217

318
using System;
419
using Microsoft.AspNet.Abstractions;

src/Microsoft.AspNet.StaticFiles/DefaultFilesMiddleware.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft Open Technologies, Inc.
2+
// All Rights Reserved
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
11+
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
12+
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
13+
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
14+
// NON-INFRINGEMENT.
15+
// See the Apache 2 License for the specific language governing
16+
// permissions and limitations under the License.
217

318
using System;
419
using System.Collections.Generic;

src/Microsoft.AspNet.StaticFiles/DefaultFilesOptions.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft Open Technologies, Inc.
2+
// All Rights Reserved
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
11+
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
12+
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
13+
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
14+
// NON-INFRINGEMENT.
15+
// See the Apache 2 License for the specific language governing
16+
// permissions and limitations under the License.
217

318
using System.Collections.Generic;
419
using System.Diagnostics.CodeAnalysis;

src/Microsoft.AspNet.StaticFiles/DirectoryBrowserExtensions.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft Open Technologies, Inc.
2+
// All Rights Reserved
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
11+
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
12+
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
13+
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
14+
// NON-INFRINGEMENT.
15+
// See the Apache 2 License for the specific language governing
16+
// permissions and limitations under the License.
217

318
using System;
419
using Microsoft.AspNet.Abstractions;

src/Microsoft.AspNet.StaticFiles/DirectoryBrowserMiddleware.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft Open Technologies, Inc.
2+
// All Rights Reserved
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
11+
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
12+
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
13+
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
14+
// NON-INFRINGEMENT.
15+
// See the Apache 2 License for the specific language governing
16+
// permissions and limitations under the License.
217

318
using System;
419
using System.Collections.Generic;

src/Microsoft.AspNet.StaticFiles/DirectoryBrowserOptions.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft Open Technologies, Inc.
2+
// All Rights Reserved
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
11+
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
12+
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
13+
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
14+
// NON-INFRINGEMENT.
15+
// See the Apache 2 License for the specific language governing
16+
// permissions and limitations under the License.
217

318
using Microsoft.AspNet.StaticFiles.DirectoryFormatters;
419
using Microsoft.AspNet.StaticFiles.Infrastructure;

0 commit comments

Comments
 (0)