Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMin Huang <huangmin@microsoft.com>2022-07-07 10:54:33 +0300
committerGitHub <noreply@github.com>2022-07-07 10:54:33 +0300
commitf71d2ecf72dc7deac1e2de58cd0f3b94f8d98999 (patch)
tree162af25130ebaee1af6f4aa7d9f6feb5623a408f
parentab41352d46b10599a15d3c939d642860bc3f4bf5 (diff)
Adopt Lucene.net as nuget package instead of submodule to resolve lgtm issue (#607)
* Remove file from submodule to resolve lgtm issue * change to full path * update * Adopt lucence.net nuget package
-rw-r--r--.gitmodules3
-rw-r--r--Directory.Build.props1
m---------external/Lucene.Net.Light0
-rw-r--r--monodoc/monodoc.csproj3
4 files changed, 2 insertions, 5 deletions
diff --git a/.gitmodules b/.gitmodules
deleted file mode 100644
index dedc135d..00000000
--- a/.gitmodules
+++ /dev/null
@@ -1,3 +0,0 @@
-[submodule "external/Lucene.Net.Light"]
- path = external/Lucene.Net.Light
- url = https://github.com/mono/Lucene.Net.Light.git
diff --git a/Directory.Build.props b/Directory.Build.props
index ef5112cc..0558f4d4 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -7,5 +7,6 @@
<NuGetVersionQuickIONET>2.6.2.0</NuGetVersionQuickIONET>
<NuGetVersionSharpZipLib>1.3.3</NuGetVersionSharpZipLib>
<NuGetVersionSystemConfigurationConfigurationManager>6.0.0</NuGetVersionSystemConfigurationConfigurationManager>
+ <NuGetVersionLuceneDotNet>3.0.3</NuGetVersionLuceneDotNet>
</PropertyGroup>
</Project> \ No newline at end of file
diff --git a/external/Lucene.Net.Light b/external/Lucene.Net.Light
deleted file mode 160000
-Subproject 68fa3260b0bb497ed80b4b383e71862bf519c05
diff --git a/monodoc/monodoc.csproj b/monodoc/monodoc.csproj
index cf73bf1b..a517527d 100644
--- a/monodoc/monodoc.csproj
+++ b/monodoc/monodoc.csproj
@@ -27,8 +27,6 @@
<Folder Include="Assembly\" />
</ItemGroup>
<ItemGroup>
- <Compile Include="..\external\Lucene.Net.Light\**\*.cs" />
-
<!-- TODO: Consider moving this generation stuff -->
<Compile Remove="Monodoc.Ecma\EcmaUrlParserDriver.cs" />
<Compile Remove="Monodoc.Ecma\jay\**\*.cs" />
@@ -231,6 +229,7 @@
<ItemGroup>
<PackageReference Include="SharpZipLib" Version="$(NuGetVersionSharpZipLib)" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="$(NuGetVersionSystemConfigurationConfigurationManager)" />
+ <PackageReference Include="Lucene.Net" Version="$(NuGetVersionLuceneDotNet)" />
</ItemGroup>
<ItemGroup>
<None Include="Monodoc.Ecma\EcmaUrlParser.jay" />