Skip to content

Commit cffc8dd

Browse files
committed
Added missing license headers
1 parent 9897c90 commit cffc8dd

File tree

3 files changed

+56
-3
lines changed

3 files changed

+56
-3
lines changed

Lucene.Net.sln

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio Version 16
3+
# Licensed to the Apache Software Foundation (ASF) under one
4+
# or more contributor license agreements. See the NOTICE file
5+
# distributed with this work for additional information
6+
# regarding copyright ownership. The ASF licenses this file
7+
# to you under the Apache License, Version 2.0 (the
8+
# "License"); you may not use this file except in compliance
9+
# with the License. You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
319
VisualStudioVersion = 16.0.29806.167
420
MinimumVisualStudioVersion = 15.0.26730.8
521
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "azure-templates", "azure-templates", "{05CE3A39-40D4-452D-AFE0-E57E536A08C6}"

NuGet.config

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<!--
4+
Licensed to the Apache Software Foundation (ASF) under one
5+
or more contributor license agreements. See the NOTICE file
6+
distributed with this work for additional information
7+
regarding copyright ownership. The ASF licenses this file
8+
to you under the Apache License, Version 2.0 (the
9+
"License"); you may not use this file except in compliance
10+
with the License. You may obtain a copy of the License at
11+
12+
http://www.apache.org/licenses/LICENSE-2.0
13+
14+
Unless required by applicable law or agreed to in writing,
15+
software distributed under the License is distributed on an
16+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17+
KIND, either express or implied. See the License for the
18+
specific language governing permissions and limitations
19+
under the License.
20+
-->
21+
222
<configuration>
323
<packageSources>
424
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
525
</packageSources>
6-
</configuration>
26+
</configuration>

src/Lucene.Net.TestFramework/Support/Util/LuceneTestFrameworkInitializer.cs

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
1-
using Lucene.Net.Codecs;
1+
using Lucene.Net.Codecs;
22
using Lucene.Net.Configuration;
33
using NUnit.Framework;
44
using System;
55
using System.Threading;
66

77
namespace Lucene.Net.Util
88
{
9+
/*
10+
* Licensed to the Apache Software Foundation (ASF) under one or more
11+
* contributor license agreements. See the NOTICE file distributed with
12+
* this work for additional information regarding copyright ownership.
13+
* The ASF licenses this file to You under the Apache License, Version 2.0
14+
* (the "License"); you may not use this file except in compliance with
15+
* the License. You may obtain a copy of the License at
16+
*
17+
* http://www.apache.org/licenses/LICENSE-2.0
18+
*
19+
* Unless required by applicable law or agreed to in writing, software
20+
* distributed under the License is distributed on an "AS IS" BASIS,
21+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22+
* See the License for the specific language governing permissions and
23+
* limitations under the License.
24+
*/
25+
926
/// <summary>
1027
/// <see cref="LuceneTestFrameworkInitializer"/> may be subclassed by end users in order to
1128
/// use standard dependency injection techniques for classes under test. A subclass of <see cref="LuceneTestFrameworkInitializer"/>
@@ -194,4 +211,4 @@ internal virtual void IncrementInitalizationCount()
194211
{
195212
}
196213
}
197-
}
214+
}

0 commit comments

Comments
 (0)