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 ef70977f267b065d50b6b95b4c74d975bf956515 Author: Shad Storhaug <[email protected]> AuthorDate: Fri Feb 11 22:38:13 2022 +0700 Lucene.Net.csproj: Exclude readme.md so we can edit the data manually in the NuGet.org portal --- src/Lucene.Net/Lucene.Net.csproj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Lucene.Net/Lucene.Net.csproj b/src/Lucene.Net/Lucene.Net.csproj index cd9dc3f..43908f9 100644 --- a/src/Lucene.Net/Lucene.Net.csproj +++ b/src/Lucene.Net/Lucene.Net.csproj @@ -28,7 +28,8 @@ <AssemblyTitle>Lucene.Net</AssemblyTitle> <Description>Lucene.Net is a full-text search engine library capable of advanced text analysis, indexing, and searching. It can be used to easily add search capabilities to applications. Lucene.Net is a C# port of the popular Java Lucene search engine framework from The Apache Software Foundation, targeted at .NET Framework and .NET Core users.</Description> - <PackageReadmeFile>readme.md</PackageReadmeFile> + <!-- Since including a readme in the NuGet package makes the info read-only, we are excluding it for now --> + <!--<PackageReadmeFile>readme.md</PackageReadmeFile>--> <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> <NoWarn>$(NoWarn);1591;1573</NoWarn> </PropertyGroup> @@ -43,7 +44,8 @@ </PropertyGroup> <ItemGroup Label="NuGet Package Files"> - <None Include="readme-nuget.md" Pack="true" PackagePath="\readme.md" /> + <!-- Since including a readme in the NuGet package makes the info read-only, we are excluding it for now --> + <!--<None Include="readme-nuget.md" Pack="true" PackagePath="\readme.md" />--> <None Include="$(LuceneNetCodeAnalysisToolsDir)*.ps1" Pack="true" PackagePath="tools" /> <None Include="$(LuceneNetCodeAnalysisCSAssemblyFile)" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" /> <None Include="$(LuceneNetCodeAnalysisVBAssemblyFile)" Pack="true" PackagePath="analyzers/dotnet/vb" Visible="false" />
