This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit b000354e2711c3b38f38afbc73468fa4f245b4a9
Author: Shad Storhaug <[email protected]>
AuthorDate: Sat Jul 6 22:43:27 2019 +0700

    Moved <Copyright> MSBuild element to common Directory.Build.props file 
(imported automatically by every project)
---
 Directory.Build.props                              | 31 ++++++++++++++++++++++
 Lucene.Net.sln                                     |  5 ++++
 .../Lucene.Net.Analysis.Common.csproj              |  1 -
 .../Lucene.Net.Analysis.Kuromoji.csproj            |  1 -
 .../Lucene.Net.Analysis.Phonetic.csproj            |  1 -
 .../Lucene.Net.Analysis.SmartCn.csproj             |  1 -
 .../Lucene.Net.Analysis.Stempel.csproj             |  1 -
 .../Lucene.Net.Benchmark.csproj                    |  1 -
 .../Lucene.Net.Classification.csproj               |  1 -
 src/Lucene.Net.Codecs/Lucene.Net.Codecs.csproj     |  1 -
 src/Lucene.Net.Demo/Lucene.Net.Demo.csproj         |  1 -
 .../Lucene.Net.Expressions.csproj                  |  1 -
 src/Lucene.Net.Facet/Lucene.Net.Facet.csproj       |  1 -
 src/Lucene.Net.Grouping/Lucene.Net.Grouping.csproj |  1 -
 .../Lucene.Net.Highlighter.csproj                  |  1 -
 src/Lucene.Net.Join/Lucene.Net.Join.csproj         |  1 -
 src/Lucene.Net.Memory/Lucene.Net.Memory.csproj     |  1 -
 src/Lucene.Net.Misc/Lucene.Net.Misc.csproj         |  1 -
 src/Lucene.Net.Queries/Lucene.Net.Queries.csproj   |  1 -
 .../Lucene.Net.QueryParser.csproj                  |  1 -
 .../Lucene.Net.Replicator.csproj                   |  1 -
 src/Lucene.Net.Sandbox/Lucene.Net.Sandbox.csproj   |  1 -
 src/Lucene.Net.Spatial/Lucene.Net.Spatial.csproj   |  1 -
 src/Lucene.Net.Suggest/Lucene.Net.Suggest.csproj   |  1 -
 .../Lucene.Net.TestFramework.csproj                |  1 -
 src/Lucene.Net/Lucene.Net.csproj                   |  1 -
 src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj    |  1 -
 .../Lucene.Net.Replicator.AspNetCore.csproj        |  1 -
 28 files changed, 36 insertions(+), 26 deletions(-)

diff --git a/Directory.Build.props b/Directory.Build.props
new file mode 100644
index 0000000..6acc95d
--- /dev/null
+++ b/Directory.Build.props
@@ -0,0 +1,31 @@
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements.  See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership.  The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied.  See the License for the
+ specific language governing permissions and limitations
+ under the License.
+
+-->
+<Project>
+  <PropertyGroup Label="Copyright Info">
+    <Product>Lucene.Net</Product>
+    <Company>The Apache Software Foundation</Company>
+    <CurrentYear Condition=" '$(CurrentYear)' == '' 
">$([System.DateTime]::UtcNow.Year.ToString())</CurrentYear>
+    <BeginCopyrightYear>2006</BeginCopyrightYear>
+    <CopyrightYearRange>$(BeginCopyrightYear) - 
$(CurrentYear)</CopyrightYearRange>
+    <CopyrightYearRange Condition=" '$(BeginCopyrightYear)' == 
'$(CurrentYear)' ">$(CurrentYear)</CopyrightYearRange>
+    <Copyright>Copyright © $(CopyrightYearRange) $(Company)</Copyright>
+  </PropertyGroup>
+</Project>
\ No newline at end of file
diff --git a/Lucene.Net.sln b/Lucene.Net.sln
index ab29568..9439788 100644
--- a/Lucene.Net.sln
+++ b/Lucene.Net.sln
@@ -153,6 +153,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = 
"Lucene.Net.Tests.ICU", "src
 EndProject
 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lucene.Net.Tests.Cli", 
"src\dotnet\tools\Lucene.Net.Tests.Cli\Lucene.Net.Tests.Cli.csproj", 
"{1F5574FE-19F7-4F10-9B88-76A938621F5B}"
 EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", 
"Solution Items", "{4DF0A2A1-B9C7-4EE5-BAF0-BEEF53E34220}"
+       ProjectSection(SolutionItems) = preProject
+               Directory.Build.props = Directory.Build.props
+       EndProjectSection
+EndProject
 Global
        GlobalSection(SolutionConfigurationPlatforms) = preSolution
                Debug|Any CPU = Debug|Any CPU
diff --git a/src/Lucene.Net.Analysis.Common/Lucene.Net.Analysis.Common.csproj 
b/src/Lucene.Net.Analysis.Common/Lucene.Net.Analysis.Common.csproj
index 67848f3..3283ce3 100644
--- a/src/Lucene.Net.Analysis.Common/Lucene.Net.Analysis.Common.csproj
+++ b/src/Lucene.Net.Analysis.Common/Lucene.Net.Analysis.Common.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git 
a/src/Lucene.Net.Analysis.Kuromoji/Lucene.Net.Analysis.Kuromoji.csproj 
b/src/Lucene.Net.Analysis.Kuromoji/Lucene.Net.Analysis.Kuromoji.csproj
index 7a1e53e..85f93d5 100644
--- a/src/Lucene.Net.Analysis.Kuromoji/Lucene.Net.Analysis.Kuromoji.csproj
+++ b/src/Lucene.Net.Analysis.Kuromoji/Lucene.Net.Analysis.Kuromoji.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git 
a/src/Lucene.Net.Analysis.Phonetic/Lucene.Net.Analysis.Phonetic.csproj 
b/src/Lucene.Net.Analysis.Phonetic/Lucene.Net.Analysis.Phonetic.csproj
index 7224972..906e10f 100644
--- a/src/Lucene.Net.Analysis.Phonetic/Lucene.Net.Analysis.Phonetic.csproj
+++ b/src/Lucene.Net.Analysis.Phonetic/Lucene.Net.Analysis.Phonetic.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Analysis.SmartCn/Lucene.Net.Analysis.SmartCn.csproj 
b/src/Lucene.Net.Analysis.SmartCn/Lucene.Net.Analysis.SmartCn.csproj
index 3b72999..a72e9fb 100644
--- a/src/Lucene.Net.Analysis.SmartCn/Lucene.Net.Analysis.SmartCn.csproj
+++ b/src/Lucene.Net.Analysis.SmartCn/Lucene.Net.Analysis.SmartCn.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Analysis.Stempel/Lucene.Net.Analysis.Stempel.csproj 
b/src/Lucene.Net.Analysis.Stempel/Lucene.Net.Analysis.Stempel.csproj
index d9191d7..ea5e3ca 100644
--- a/src/Lucene.Net.Analysis.Stempel/Lucene.Net.Analysis.Stempel.csproj
+++ b/src/Lucene.Net.Analysis.Stempel/Lucene.Net.Analysis.Stempel.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Benchmark/Lucene.Net.Benchmark.csproj 
b/src/Lucene.Net.Benchmark/Lucene.Net.Benchmark.csproj
index 8cc8a2b..bde4c0b 100644
--- a/src/Lucene.Net.Benchmark/Lucene.Net.Benchmark.csproj
+++ b/src/Lucene.Net.Benchmark/Lucene.Net.Benchmark.csproj
@@ -36,7 +36,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Classification/Lucene.Net.Classification.csproj 
b/src/Lucene.Net.Classification/Lucene.Net.Classification.csproj
index d251b45..f2a0378 100644
--- a/src/Lucene.Net.Classification/Lucene.Net.Classification.csproj
+++ b/src/Lucene.Net.Classification/Lucene.Net.Classification.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Codecs/Lucene.Net.Codecs.csproj 
b/src/Lucene.Net.Codecs/Lucene.Net.Codecs.csproj
index 73e1d52..1c01658 100644
--- a/src/Lucene.Net.Codecs/Lucene.Net.Codecs.csproj
+++ b/src/Lucene.Net.Codecs/Lucene.Net.Codecs.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Demo/Lucene.Net.Demo.csproj 
b/src/Lucene.Net.Demo/Lucene.Net.Demo.csproj
index e255de8..983362d 100644
--- a/src/Lucene.Net.Demo/Lucene.Net.Demo.csproj
+++ b/src/Lucene.Net.Demo/Lucene.Net.Demo.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Expressions/Lucene.Net.Expressions.csproj 
b/src/Lucene.Net.Expressions/Lucene.Net.Expressions.csproj
index da3e43a..bad9977 100644
--- a/src/Lucene.Net.Expressions/Lucene.Net.Expressions.csproj
+++ b/src/Lucene.Net.Expressions/Lucene.Net.Expressions.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Facet/Lucene.Net.Facet.csproj 
b/src/Lucene.Net.Facet/Lucene.Net.Facet.csproj
index e88d061..24aaac3 100644
--- a/src/Lucene.Net.Facet/Lucene.Net.Facet.csproj
+++ b/src/Lucene.Net.Facet/Lucene.Net.Facet.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Grouping/Lucene.Net.Grouping.csproj 
b/src/Lucene.Net.Grouping/Lucene.Net.Grouping.csproj
index 07c9e74..d2dce9f 100644
--- a/src/Lucene.Net.Grouping/Lucene.Net.Grouping.csproj
+++ b/src/Lucene.Net.Grouping/Lucene.Net.Grouping.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Highlighter/Lucene.Net.Highlighter.csproj 
b/src/Lucene.Net.Highlighter/Lucene.Net.Highlighter.csproj
index e01905f..e5db907 100644
--- a/src/Lucene.Net.Highlighter/Lucene.Net.Highlighter.csproj
+++ b/src/Lucene.Net.Highlighter/Lucene.Net.Highlighter.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Join/Lucene.Net.Join.csproj 
b/src/Lucene.Net.Join/Lucene.Net.Join.csproj
index 990ea0b..f5490fc 100644
--- a/src/Lucene.Net.Join/Lucene.Net.Join.csproj
+++ b/src/Lucene.Net.Join/Lucene.Net.Join.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Memory/Lucene.Net.Memory.csproj 
b/src/Lucene.Net.Memory/Lucene.Net.Memory.csproj
index 0eca13a..6916210 100644
--- a/src/Lucene.Net.Memory/Lucene.Net.Memory.csproj
+++ b/src/Lucene.Net.Memory/Lucene.Net.Memory.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Misc/Lucene.Net.Misc.csproj 
b/src/Lucene.Net.Misc/Lucene.Net.Misc.csproj
index a3e83f6..6f9d70f 100644
--- a/src/Lucene.Net.Misc/Lucene.Net.Misc.csproj
+++ b/src/Lucene.Net.Misc/Lucene.Net.Misc.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Queries/Lucene.Net.Queries.csproj 
b/src/Lucene.Net.Queries/Lucene.Net.Queries.csproj
index 785154c..fa15e0c 100644
--- a/src/Lucene.Net.Queries/Lucene.Net.Queries.csproj
+++ b/src/Lucene.Net.Queries/Lucene.Net.Queries.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.QueryParser/Lucene.Net.QueryParser.csproj 
b/src/Lucene.Net.QueryParser/Lucene.Net.QueryParser.csproj
index 7d0a366..be1e8de 100644
--- a/src/Lucene.Net.QueryParser/Lucene.Net.QueryParser.csproj
+++ b/src/Lucene.Net.QueryParser/Lucene.Net.QueryParser.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Replicator/Lucene.Net.Replicator.csproj 
b/src/Lucene.Net.Replicator/Lucene.Net.Replicator.csproj
index 25c3902..4ce6302 100644
--- a/src/Lucene.Net.Replicator/Lucene.Net.Replicator.csproj
+++ b/src/Lucene.Net.Replicator/Lucene.Net.Replicator.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Sandbox/Lucene.Net.Sandbox.csproj 
b/src/Lucene.Net.Sandbox/Lucene.Net.Sandbox.csproj
index b347dba..cb5a64f 100644
--- a/src/Lucene.Net.Sandbox/Lucene.Net.Sandbox.csproj
+++ b/src/Lucene.Net.Sandbox/Lucene.Net.Sandbox.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Spatial/Lucene.Net.Spatial.csproj 
b/src/Lucene.Net.Spatial/Lucene.Net.Spatial.csproj
index de3df43..0c02c45 100644
--- a/src/Lucene.Net.Spatial/Lucene.Net.Spatial.csproj
+++ b/src/Lucene.Net.Spatial/Lucene.Net.Spatial.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.Suggest/Lucene.Net.Suggest.csproj 
b/src/Lucene.Net.Suggest/Lucene.Net.Suggest.csproj
index cfd8950..5690a65 100644
--- a/src/Lucene.Net.Suggest/Lucene.Net.Suggest.csproj
+++ b/src/Lucene.Net.Suggest/Lucene.Net.Suggest.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 
diff --git a/src/Lucene.Net.TestFramework/Lucene.Net.TestFramework.csproj 
b/src/Lucene.Net.TestFramework/Lucene.Net.TestFramework.csproj
index dcf12e7..4d36c1b 100644
--- a/src/Lucene.Net.TestFramework/Lucene.Net.TestFramework.csproj
+++ b/src/Lucene.Net.TestFramework/Lucene.Net.TestFramework.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     <!-- LUCENENET TODO: If we ever complete the work to release this module, 
we should add the documentation and
       remove all of the warnings this line produces. -->
     
<!--<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>-->
diff --git a/src/Lucene.Net/Lucene.Net.csproj b/src/Lucene.Net/Lucene.Net.csproj
index 08edbfe..38bfff4 100644
--- a/src/Lucene.Net/Lucene.Net.csproj
+++ b/src/Lucene.Net/Lucene.Net.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
     
diff --git a/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj 
b/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj
index af619d7..8c7a841 100644
--- a/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj
+++ b/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj
@@ -36,7 +36,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
     <DefineConstants>$(DefineConstants);FEATURE_BREAKITERATOR</DefineConstants>
diff --git 
a/src/dotnet/Lucene.Net.Replicator.AspNetCore/Lucene.Net.Replicator.AspNetCore.csproj
 
b/src/dotnet/Lucene.Net.Replicator.AspNetCore/Lucene.Net.Replicator.AspNetCore.csproj
index f2893ad..99e9c37 100644
--- 
a/src/dotnet/Lucene.Net.Replicator.AspNetCore/Lucene.Net.Replicator.AspNetCore.csproj
+++ 
b/src/dotnet/Lucene.Net.Replicator.AspNetCore/Lucene.Net.Replicator.AspNetCore.csproj
@@ -35,7 +35,6 @@
     
<PackageLicenseUrl>https://github.com/apache/lucenenet/blob/master/LICENSE.txt</PackageLicenseUrl>
     <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl>
     
<PackageIconUrl>https://github.com/apache/lucenenet/blob/master/branding/logo/lucene-net-icon-128x128.png?raw=true</PackageIconUrl>
-    <Copyright>Copyright © 2006 - 2017 The Apache Software 
Foundation</Copyright>
     
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
     <NoWarn>$(NoWarn);1591;1573</NoWarn>
 

Reply via email to