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 e490e799d47a40c8b014c89a61d6bacdcea91199 Author: Shad Storhaug <[email protected]> AuthorDate: Thu Dec 23 22:01:37 2021 +0700 SWEEP: Updated NuGet packages with URLs for documentation, release notes, and a link back to the main Lucene.Net NuGet package. --- build/NuGet.props | 19 +++++++++++++++++-- .../Lucene.Net.Analysis.Common.csproj | 7 ++++++- .../Lucene.Net.Analysis.Kuromoji.csproj | 7 ++++++- .../Lucene.Net.Analysis.Morfologik.csproj | 9 +++++++-- .../Lucene.Net.Analysis.OpenNLP.csproj | 9 +++++++-- .../Lucene.Net.Analysis.Phonetic.csproj | 7 ++++++- .../Lucene.Net.Analysis.SmartCn.csproj | 8 ++++++-- .../Lucene.Net.Analysis.Stempel.csproj | 7 ++++++- src/Lucene.Net.Benchmark/Lucene.Net.Benchmark.csproj | 7 ++++++- .../Lucene.Net.Classification.csproj | 7 ++++++- src/Lucene.Net.Codecs/Lucene.Net.Codecs.csproj | 7 ++++++- .../Lucene.Net.Expressions.csproj | 7 ++++++- src/Lucene.Net.Facet/Lucene.Net.Facet.csproj | 7 ++++++- src/Lucene.Net.Grouping/Lucene.Net.Grouping.csproj | 7 ++++++- .../Lucene.Net.Highlighter.csproj | 7 ++++++- src/Lucene.Net.Join/Lucene.Net.Join.csproj | 9 +++++++-- src/Lucene.Net.Memory/Lucene.Net.Memory.csproj | 7 ++++++- src/Lucene.Net.Misc/Lucene.Net.Misc.csproj | 7 ++++++- src/Lucene.Net.Queries/Lucene.Net.Queries.csproj | 7 ++++++- .../Lucene.Net.QueryParser.csproj | 7 ++++++- .../Lucene.Net.Replicator.csproj | 7 ++++++- src/Lucene.Net.Sandbox/Lucene.Net.Sandbox.csproj | 7 ++++++- src/Lucene.Net.Spatial/Lucene.Net.Spatial.csproj | 7 ++++++- src/Lucene.Net.Suggest/Lucene.Net.Suggest.csproj | 7 ++++++- .../Lucene.Net.TestFramework.csproj | 7 ++++++- src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj | 7 ++++++- 26 files changed, 170 insertions(+), 31 deletions(-) diff --git a/build/NuGet.props b/build/NuGet.props index 9299821..b7c3e39 100644 --- a/build/NuGet.props +++ b/build/NuGet.props @@ -1,4 +1,4 @@ -<!-- +<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file @@ -24,10 +24,25 @@ <PackageTags>lucene.net;core;text;search;information;retrieval;lucene;apache;analysis;index;query</PackageTags> <Authors>The Apache Software Foundation</Authors> <RepositoryUrl>https://github.com/apache/lucenenet</RepositoryUrl> - <PackageProjectUrl>http://lucenenet.apache.org/</PackageProjectUrl> + <PackageProjectUrl>https://lucenenet.apache.org</PackageProjectUrl> <PackageIcon>lucene-net-icon-128x128.png</PackageIcon> <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> <PackageNoticeFile>NOTICE.txt</PackageNoticeFile> + + <!-- This git tag convention was used for legacy packages rather than using PackageVersion, so we are following suit --> + <VCSLabelPrefix>Lucene.Net_</VCSLabelPrefix> + <VCSLabel>$(VCSLabelPrefix)$(PackageVersion.Replace('.', '_').Replace('-', '_'))</VCSLabel> + <ReleaseNotesUrl>$(RepositoryUrl)/releases/tag/$(VCSLabel)</ReleaseNotesUrl> + <PackageReleaseNotes>$(ReleaseNotesUrl)</PackageReleaseNotes> + + <!-- Build a compound description that links to the release notes and package documentation home page. --> + <Description> + $(Description) + +Documentation: $(PackageProjectUrl)/docs/$(PackageVersion)/api/$(PackageDocumentationRelativeUrl) + +This package is part of the Lucene.NET project: https://www.nuget.org/packages/Lucene.Net/$(PackageVersion) + </Description> </PropertyGroup> <ItemGroup> <None Include="$(SolutionDir)LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)"/> 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 ee7887a..16f6f5d 100644 --- a/src/Lucene.Net.Analysis.Common/Lucene.Net.Analysis.Common.csproj +++ b/src/Lucene.Net.Analysis.Common/Lucene.Net.Analysis.Common.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Analyzers for indexing content in different languages and domains for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>analysis-common/overview.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Analysis.Common</AssemblyTitle> - <Description>Analyzers for indexing content in different languages and domains for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);analysis</PackageTags> <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 51228ca..9f488b5 100644 --- a/src/Lucene.Net.Analysis.Kuromoji/Lucene.Net.Analysis.Kuromoji.csproj +++ b/src/Lucene.Net.Analysis.Kuromoji/Lucene.Net.Analysis.Kuromoji.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Japanese Morphological Analyzer for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>analysis-kuromoji/Lucene.Net.Analysis.Ja.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Analysis.Kuromoji</AssemblyTitle> - <Description>Japanese Morphological Analyzer for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);analysis;japanese</PackageTags> <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> <NoWarn>$(NoWarn);1591;1573</NoWarn> diff --git a/src/Lucene.Net.Analysis.Morfologik/Lucene.Net.Analysis.Morfologik.csproj b/src/Lucene.Net.Analysis.Morfologik/Lucene.Net.Analysis.Morfologik.csproj index 2571a6e..4a16060 100644 --- a/src/Lucene.Net.Analysis.Morfologik/Lucene.Net.Analysis.Morfologik.csproj +++ b/src/Lucene.Net.Analysis.Morfologik/Lucene.Net.Analysis.Morfologik.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Analyzer for dictionary stemming, built-in Polish dictionary for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>analysis-morfologik/Lucene.Net.Analysis.Morfologik.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -29,8 +35,7 @@ <AssemblyTitle>Lucene.Net.Analysis.Morfologik</AssemblyTitle> <RootNamespace>Lucene.Net.Analysis</RootNamespace> - <Description>Japanese Morphological Analyzer for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> - <PackageTags>$(PackageTags);analysis;japanese</PackageTags> + <PackageTags>$(PackageTags);analysis;polish;ukrainian</PackageTags> <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> <NoWarn>$(NoWarn);1591;1573</NoWarn> </PropertyGroup> diff --git a/src/Lucene.Net.Analysis.OpenNLP/Lucene.Net.Analysis.OpenNLP.csproj b/src/Lucene.Net.Analysis.OpenNLP/Lucene.Net.Analysis.OpenNLP.csproj index 016fcb4..6e7546f 100644 --- a/src/Lucene.Net.Analysis.OpenNLP/Lucene.Net.Analysis.OpenNLP.csproj +++ b/src/Lucene.Net.Analysis.OpenNLP/Lucene.Net.Analysis.OpenNLP.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>OpenNLP library integration for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>analysis-opennlp/Lucene.Net.Analysis.OpenNlp.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,8 +34,7 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net451</TargetFrameworks> <AssemblyTitle>Lucene.Net.Analysis.OpenNLP</AssemblyTitle> - <Description>Analyzer for indexing phonetic signatures (for sounds-alike search) for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> - <PackageTags>$(PackageTags);analysis;soundex;double;metaphone;sounds;like;beider;morse;cologne;caverphone;nysiis;match;rating</PackageTags> + <PackageTags>$(PackageTags);analysis;natural;language;processing;opennlp</PackageTags> <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> <NoWarn>$(NoWarn);1591;1573</NoWarn> <RootNamespace>Lucene.Net.Analysis.OpenNlp</RootNamespace> 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 e558a66..a021405 100644 --- a/src/Lucene.Net.Analysis.Phonetic/Lucene.Net.Analysis.Phonetic.csproj +++ b/src/Lucene.Net.Analysis.Phonetic/Lucene.Net.Analysis.Phonetic.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Analyzer for indexing phonetic signatures (for sounds-alike search) for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>analysis-phonetic/Lucene.Net.Analysis.Phonetic.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Analysis.Phonetic</AssemblyTitle> - <Description>Analyzer for indexing phonetic signatures (for sounds-alike search) for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);analysis;soundex;double;metaphone;sounds;like;beider;morse;cologne;caverphone;nysiis;match;rating</PackageTags> <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 f4ae687..14f4ee9 100644 --- a/src/Lucene.Net.Analysis.SmartCn/Lucene.Net.Analysis.SmartCn.csproj +++ b/src/Lucene.Net.Analysis.SmartCn/Lucene.Net.Analysis.SmartCn.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Analyzer for indexing Chinese for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>analysis-smartcn/Lucene.Net.Analysis.Cn.Smart.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,8 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net451</TargetFrameworks> <AssemblyTitle>Lucene.Net.Analysis.SmartCn</AssemblyTitle> - <Description>Analyzer for indexing Chinese for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> - <PackageTags>$(PackageTags);analysis;chinese;smart</PackageTags> <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 18c336b..4794100 100644 --- a/src/Lucene.Net.Analysis.Stempel/Lucene.Net.Analysis.Stempel.csproj +++ b/src/Lucene.Net.Analysis.Stempel/Lucene.Net.Analysis.Stempel.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Analyzer for indexing Polish for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>analysis-stempel/Lucene.Net.Analysis.Stempel.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Analysis.Stempel</AssemblyTitle> - <Description>Analyzer for indexing Polish for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);analysis;polish</PackageTags> <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 f6e4080..ef39433 100644 --- a/src/Lucene.Net.Benchmark/Lucene.Net.Benchmark.csproj +++ b/src/Lucene.Net.Benchmark/Lucene.Net.Benchmark.csproj @@ -20,6 +20,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>System for benchmarking the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>benchmark/Lucene.Net.Benchmarks.html</PackageDocumentationRelativeUrl> + </PropertyGroup> <Import Project="$(SolutionDir)build/NuGet.props" /> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net451</TargetFrameworks> <AssemblyTitle>Lucene.Net.Benchmark</AssemblyTitle> - <Description>System for benchmarking the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);benchmark</PackageTags> <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 dcb14f3..4995eae 100644 --- a/src/Lucene.Net.Classification/Lucene.Net.Classification.csproj +++ b/src/Lucene.Net.Classification/Lucene.Net.Classification.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Classification module for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>classification/Lucene.Net.Classification.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Classification</AssemblyTitle> - <Description>Classification module for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);classification</PackageTags> <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 67816ef..5e5aa9c 100644 --- a/src/Lucene.Net.Codecs/Lucene.Net.Codecs.csproj +++ b/src/Lucene.Net.Codecs/Lucene.Net.Codecs.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Specialized codecs and postings formats for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>codecs/overview.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Codecs</AssemblyTitle> - <Description>Specialized codecs and postings formats for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);codec</PackageTags> <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 d438dab..d8523d8 100644 --- a/src/Lucene.Net.Expressions/Lucene.Net.Expressions.csproj +++ b/src/Lucene.Net.Expressions/Lucene.Net.Expressions.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Dynamically computed values to sort/facet/search on based on a pluggable grammar for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>expressions/overview.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Expressions</AssemblyTitle> - <Description>Dynamically computed values to sort/facet/search on based on a pluggable grammar for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);expression</PackageTags> <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 20dd129..16868bc 100644 --- a/src/Lucene.Net.Facet/Lucene.Net.Facet.csproj +++ b/src/Lucene.Net.Facet/Lucene.Net.Facet.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Faceted indexing and search capabilities for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>facet/package.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Facet</AssemblyTitle> - <Description>Faceted indexing and search capabilities for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);facet;faceted</PackageTags> <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 d7f73b4..5bb866e 100644 --- a/src/Lucene.Net.Grouping/Lucene.Net.Grouping.csproj +++ b/src/Lucene.Net.Grouping/Lucene.Net.Grouping.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Collectors for grouping search results for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>grouping/package.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Grouping</AssemblyTitle> - <Description>Collectors for grouping search results for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);grouping;group</PackageTags> <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 8ff5f7c..b114124 100644 --- a/src/Lucene.Net.Highlighter/Lucene.Net.Highlighter.csproj +++ b/src/Lucene.Net.Highlighter/Lucene.Net.Highlighter.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Highlights search keywords in results from the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>highlighter/overview.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Highlighter</AssemblyTitle> - <Description>Highlights search keywords in results from the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);highlight;highlighter</PackageTags> <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 a1c32bb..68253eb 100644 --- a/src/Lucene.Net.Join/Lucene.Net.Join.csproj +++ b/src/Lucene.Net.Join/Lucene.Net.Join.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Index-time and Query-time joins for normalized content of the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>join/package.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,9 +34,8 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <RootNamespace>Lucene.Net.Search.Join</RootNamespace> - + <AssemblyTitle>Lucene.Net.Join</AssemblyTitle> - <Description>Index-time and Query-time joins for normalized content of the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);join</PackageTags> <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 fbfa416..9317a4f 100644 --- a/src/Lucene.Net.Memory/Lucene.Net.Memory.csproj +++ b/src/Lucene.Net.Memory/Lucene.Net.Memory.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Single-document in-memory index implementation for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>memory/Lucene.Net.Index.Memory.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Memory</AssemblyTitle> - <Description>Single-document in-memory index implementation for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);memory</PackageTags> <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 7340736..09e7025 100644 --- a/src/Lucene.Net.Misc/Lucene.Net.Misc.csproj +++ b/src/Lucene.Net.Misc/Lucene.Net.Misc.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Index tools and other miscellaneous functionality for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>misc/Lucene.Net.Misc.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Misc</AssemblyTitle> - <Description>Index tools and other miscellaneous functionality for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);miscellaneous</PackageTags> <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 e597d34..b2956a2 100644 --- a/src/Lucene.Net.Queries/Lucene.Net.Queries.csproj +++ b/src/Lucene.Net.Queries/Lucene.Net.Queries.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Extended Filters and Queries for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>queries/Lucene.Net.Queries.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Queries</AssemblyTitle> - <Description>Extended Filters and Queries for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);query;queries</PackageTags> <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 8558a28..ffd6654 100644 --- a/src/Lucene.Net.QueryParser/Lucene.Net.QueryParser.csproj +++ b/src/Lucene.Net.QueryParser/Lucene.Net.QueryParser.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Query parsers and parsing framework for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>queryparser/overview.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -30,7 +36,6 @@ <RootNamespace>Lucene.Net.QueryParsers</RootNamespace> <AssemblyTitle>Lucene.Net.QueryParser</AssemblyTitle> - <Description>Query parsers and parsing framework for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);query;queryparser</PackageTags> <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> diff --git a/src/Lucene.Net.Replicator/Lucene.Net.Replicator.csproj b/src/Lucene.Net.Replicator/Lucene.Net.Replicator.csproj index 3bc3f88..cd1d361 100644 --- a/src/Lucene.Net.Replicator/Lucene.Net.Replicator.csproj +++ b/src/Lucene.Net.Replicator/Lucene.Net.Replicator.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Replicator that allows replication of files between a server and client(s) for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>replicator/Lucene.Net.Replicator.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Replicator</AssemblyTitle> - <Description>Replicator that allows replication of files between a server and client(s) for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);files;replication;replicate</PackageTags> <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 9bc6a73..694817b 100644 --- a/src/Lucene.Net.Sandbox/Lucene.Net.Sandbox.csproj +++ b/src/Lucene.Net.Sandbox/Lucene.Net.Sandbox.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Various third party contributions and new ideas extensions for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>sandbox/overview.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Sandbox</AssemblyTitle> - <Description>Various third party contributions and new ideas extensions for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);sandbox</PackageTags> <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 c116d28..6ebe413 100644 --- a/src/Lucene.Net.Spatial/Lucene.Net.Spatial.csproj +++ b/src/Lucene.Net.Spatial/Lucene.Net.Spatial.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Geospatial search for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>spatial/Lucene.Net.Spatial.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Spatial</AssemblyTitle> - <Description>Geospatial search for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);spatial;geo;geospatial;2d</PackageTags> <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 0811676..3ebd211 100644 --- a/src/Lucene.Net.Suggest/Lucene.Net.Suggest.csproj +++ b/src/Lucene.Net.Suggest/Lucene.Net.Suggest.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Auto-suggest and Spellchecking support for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>suggest/overview.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net45</TargetFrameworks> <AssemblyTitle>Lucene.Net.Suggest</AssemblyTitle> - <Description>Auto-suggest and Spellchecking support for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);suggest;suggestion</PackageTags> <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 ba34529..5c24dae 100644 --- a/src/Lucene.Net.TestFramework/Lucene.Net.TestFramework.csproj +++ b/src/Lucene.Net.TestFramework/Lucene.Net.TestFramework.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>Framework for testing Lucene.NET-based applications using NUnit.</Description> + <PackageDocumentationRelativeUrl>test-framework/overview.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -29,7 +35,6 @@ <AssemblyTitle>Lucene.Net.TestFramework</AssemblyTitle> <RootNamespace>Lucene.Net</RootNamespace> - <Description>Framework for testing third-party code that uses the Lucene.Net API using NUnit.</Description> <PackageTags>$(PackageTags);testframework;test;framework;nunit</PackageTags> <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> diff --git a/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj b/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj index 0df5322..78e555f 100644 --- a/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj +++ b/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj @@ -21,6 +21,12 @@ --> <Project Sdk="Microsoft.NET.Sdk"> + <!-- These properties must be set prior to importing NuGet.props --> + <PropertyGroup> + <Description>International Components for Unicode-based features including Thai analyzer support, an international postings highlighter, and BreakIterator support for the vector highlighter for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> + <PackageDocumentationRelativeUrl>icu/overview.html</PackageDocumentationRelativeUrl> + </PropertyGroup> + <Import Project="$(SolutionDir)build/NuGet.props" /> <PropertyGroup> @@ -28,7 +34,6 @@ <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net451</TargetFrameworks> <AssemblyTitle>Lucene.Net.ICU</AssemblyTitle> - <Description>International Components for Unicode-based features including Thai analyzer support, an international postings highlighter, and BreakIterator support for the vector highlighter for the Lucene.Net full-text search engine library from The Apache Software Foundation.</Description> <PackageTags>$(PackageTags);icu;international;unicode</PackageTags> <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> <NoWarn>$(NoWarn);1591;1573</NoWarn>
