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 2021/11/22 12:24:16 UTC

[lucenenet] branch master updated (558e040 -> fcf0019)

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 558e040  BREAKING: Lucene.Net.Misc: Made DocFreqComparer and TotalTermFreqComparer into static singletons, only accessible by the Default property.
     new fe55bd1  build/TestRefereneces.Common.targets: Added Microsoft.Extensions.Configuration packages for netcoreapp3.1
     new fcf0019  build/Dependencies.props: Upgraded Microsoft.Extensions.Configuration to 3.0.0

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/Dependencies.props            | 1 +
 build/TestReferences.Common.targets | 6 ++++++
 2 files changed, 7 insertions(+)

[lucenenet] 02/02: build/Dependencies.props: Upgraded Microsoft.Extensions.Configuration to 3.0.0

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 fcf001913238e6ebcb1fae3e491fa51b791f2ad7
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Mon Nov 22 18:40:10 2021 +0700

    build/Dependencies.props: Upgraded Microsoft.Extensions.Configuration to 3.0.0
---
 build/Dependencies.props | 1 +
 1 file changed, 1 insertion(+)

diff --git a/build/Dependencies.props b/build/Dependencies.props
index 836c8bc..eac09c6 100644
--- a/build/Dependencies.props
+++ b/build/Dependencies.props
@@ -50,6 +50,7 @@
     <MicrosoftCodeAnalysisVisualBasicWorkspacesPackageVersion>$(MicrosoftCodeAnalysisVisualBasicPackageVersion)</MicrosoftCodeAnalysisVisualBasicWorkspacesPackageVersion>
     <MicrosoftExtensionsConfigurationPackageVersion>2.0.0</MicrosoftExtensionsConfigurationPackageVersion>
     <MicrosoftExtensionsConfigurationPackageVersion Condition=" $(TargetFramework.StartsWith('net45')) ">1.1.2</MicrosoftExtensionsConfigurationPackageVersion>
+    <MicrosoftExtensionsConfigurationPackageVersion Condition=" $(TargetFramework.StartsWith('netcoreapp')) ">3.0.0</MicrosoftExtensionsConfigurationPackageVersion>
     <MicrosoftExtensionsConfigurationAbstractionsPackageVersion>$(MicrosoftExtensionsConfigurationPackageVersion)</MicrosoftExtensionsConfigurationAbstractionsPackageVersion>
     <MicrosoftExtensionsConfigurationCommandLinePackageVersion>$(MicrosoftExtensionsConfigurationPackageVersion)</MicrosoftExtensionsConfigurationCommandLinePackageVersion>
     <MicrosoftExtensionsConfigurationEnvironmentVariablesPackageVersion>$(MicrosoftExtensionsConfigurationPackageVersion)</MicrosoftExtensionsConfigurationEnvironmentVariablesPackageVersion>

[lucenenet] 01/02: build/TestRefereneces.Common.targets: Added Microsoft.Extensions.Configuration packages for netcoreapp3.1

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 fe55bd1b779b897526d24b5d85e0b6639ab8bcf8
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Mon Nov 22 18:26:48 2021 +0700

    build/TestRefereneces.Common.targets: Added Microsoft.Extensions.Configuration packages for netcoreapp3.1
---
 build/TestReferences.Common.targets | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/build/TestReferences.Common.targets b/build/TestReferences.Common.targets
index b24b3d3..6ec0ad4 100644
--- a/build/TestReferences.Common.targets
+++ b/build/TestReferences.Common.targets
@@ -28,6 +28,12 @@
 
   <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' ">
     <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="$(MicrosoftExtensionsConfigurationAbstractionsPackageVersion)" />
+    <PackageReference Include="Microsoft.Extensions.Configuration" Version="$(MicrosoftExtensionsConfigurationAbstractionsPackageVersion)" />
+    <PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="$(MicrosoftExtensionsConfigurationAbstractionsPackageVersion)" />
+    <PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="$(MicrosoftExtensionsConfigurationAbstractionsPackageVersion)" />
+    <PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="$(MicrosoftExtensionsConfigurationAbstractionsPackageVersion)" />
+    <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(MicrosoftExtensionsConfigurationAbstractionsPackageVersion)" />
+    <PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="$(MicrosoftExtensionsConfigurationAbstractionsPackageVersion)" />
     <PackageReference Include="System.Net.Primitives" Version="$(SystemNetPrimitivesPackageVersion)" />
   </ItemGroup>