You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2022/02/11 15:56:27 UTC

[lucenenet] branch master updated (11806ed -> ef70977)

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

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


    from 11806ed  SWEEP: Changed "== null" to "is null"
     new 9a6ebb5  .build/nuget.props: Updated release notes URL
     new ef70977  Lucene.Net.csproj: Exclude readme.md so we can edit the data manually in the NuGet.org portal

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .build/nuget.props               | 2 +-
 Directory.Build.props            | 2 ++
 src/Lucene.Net/Lucene.Net.csproj | 6 ++++--
 3 files changed, 7 insertions(+), 3 deletions(-)

[lucenenet] 01/02: .build/nuget.props: Updated release notes URL

Posted by ni...@apache.org.
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 9a6ebb582284e485f00112343b5bed94fa436ccb
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Fri Feb 11 22:25:09 2022 +0700

    .build/nuget.props: Updated release notes URL
---
 .build/nuget.props    | 2 +-
 Directory.Build.props | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/.build/nuget.props b/.build/nuget.props
index 3eaf84a..0ac1703 100644
--- a/.build/nuget.props
+++ b/.build/nuget.props
@@ -31,7 +31,7 @@
     <!-- 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>
+    <ReleaseNotesUrl>https://github.com/$(GitHubOrganization)/$(GitHubProject)/releases/tag/$(VCSLabel)</ReleaseNotesUrl>
     <PackageReleaseNotes>$(ReleaseNotesUrl)</PackageReleaseNotes>
 
     <!-- Build a compound description that links to the release notes and package documentation home page. -->
diff --git a/Directory.Build.props b/Directory.Build.props
index 4cda9db..413c2aa 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -27,6 +27,8 @@
   
   <PropertyGroup>
     <LangVersion>9.0</LangVersion>
+    <GitHubOrganization>apache</GitHubOrganization>
+    <GitHubProject>lucenenet</GitHubProject>
   </PropertyGroup>
 
   <!-- IMPORTANT: When these values are changed, the CI counter number should also be reset. -->

[lucenenet] 02/02: Lucene.Net.csproj: Exclude readme.md so we can edit the data manually in the NuGet.org portal

Posted by ni...@apache.org.
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 <sh...@shadstorhaug.com>
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" />