Replaced the Umbraco.Examine.Lucene.csproj with the new format (PackageReferences)
This commit is contained in:
@@ -1,15 +0,0 @@
|
|||||||
using System.Reflection;
|
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
|
|
||||||
[assembly: AssemblyTitle("Umbraco.Examine")]
|
|
||||||
[assembly: AssemblyDescription("Umbraco Examine")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyProduct("Umbraco CMS")]
|
|
||||||
|
|
||||||
// Umbraco Cms
|
|
||||||
[assembly: InternalsVisibleTo("Umbraco.Tests")]
|
|
||||||
[assembly: InternalsVisibleTo("Umbraco.Web")]
|
|
||||||
|
|
||||||
// code analysis
|
|
||||||
// IDE1006 is broken, wants _value syntax for consts, etc - and it's even confusing ppl at MS, kill it
|
|
||||||
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "~_~")]
|
|
||||||
@@ -1,104 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Project ToolsVersion="15.0">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
<PropertyGroup>
|
||||||
<PropertyGroup>
|
<TargetFramework>net472</TargetFramework>
|
||||||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
<RootNamespace>Umbraco.Examine</RootNamespace>
|
||||||
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
<Product>Umbraco CMS</Product>
|
||||||
<ProjectGuid>{07FBC26B-2927-4A22-8D96-D644C667FECC}</ProjectGuid>
|
<Title>Umbraco.Examine.Lucene</Title>
|
||||||
<OutputType>Library</OutputType>
|
</PropertyGroup>
|
||||||
<AssemblyName>Umbraco.Examine.Lucene</AssemblyName>
|
|
||||||
<RootNamespace>Umbraco.Examine</RootNamespace>
|
<ItemGroup>
|
||||||
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
|
<Compile Remove="obj\**" />
|
||||||
<TargetFrameworkProfile />
|
</ItemGroup>
|
||||||
<AdditionalFileItemNames>$(AdditionalFileItemNames);Content</AdditionalFileItemNames>
|
|
||||||
</PropertyGroup>
|
<ItemGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<EmbeddedResource Remove="obj\**" />
|
||||||
<DebugSymbols>true</DebugSymbols>
|
</ItemGroup>
|
||||||
<DebugType>portable</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
<ItemGroup>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
<None Remove="obj\**" />
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
</ItemGroup>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
<ItemGroup>
|
||||||
<Prefer32Bit>false</Prefer32Bit>
|
<ProjectReference Include="..\Umbraco.Abstractions\Umbraco.Abstractions.csproj" />
|
||||||
<LangVersion>latest</LangVersion>
|
<ProjectReference Include="..\Umbraco.Examine\Umbraco.Examine.csproj" />
|
||||||
</PropertyGroup>
|
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
</ItemGroup>
|
||||||
<DebugType>portable</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
<ItemGroup>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<PackageReference Include="Examine.Lucene" Version="2.0.0" />
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" />
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
||||||
<WarningLevel>4</WarningLevel>
|
<PackageReference Include="NPoco" Version="4.0.2" />
|
||||||
<DocumentationFile>bin\Release\Umbraco.Examine.Lucene.xml</DocumentationFile>
|
<PackageReference Include="SecurityCodeScan" Version="3.4.0" />
|
||||||
<Prefer32Bit>false</Prefer32Bit>
|
</ItemGroup>
|
||||||
<LangVersion>latest</LangVersion>
|
|
||||||
</PropertyGroup>
|
</Project>
|
||||||
<ItemGroup>
|
|
||||||
<Reference Include="System" />
|
|
||||||
<Reference Include="System.configuration" />
|
|
||||||
<Reference Include="System.Core" />
|
|
||||||
<Reference Include="System.Data" />
|
|
||||||
<Reference Include="System.Runtime.Caching" />
|
|
||||||
<Reference Include="System.Runtime.Serialization" />
|
|
||||||
<Reference Include="System.Web" />
|
|
||||||
<Reference Include="System.Web.Abstractions" />
|
|
||||||
<Reference Include="System.Xml.Linq" />
|
|
||||||
<Reference Include="System.Xml" />
|
|
||||||
<Reference Include="Microsoft.CSharp" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<!-- note: NuGet deals with transitive references now -->
|
|
||||||
<PackageReference Include="Examine.Lucene">
|
|
||||||
<Version>2.0.0-alpha.20200128.15</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="Microsoft.SourceLink.GitHub">
|
|
||||||
<Version>1.0.0-beta2-19554-01</Version>
|
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
||||||
<PrivateAssets>all</PrivateAssets>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
|
|
||||||
<PackageReference Include="NPoco" Version="4.0.2" />
|
|
||||||
<PackageReference Include="SecurityCodeScan">
|
|
||||||
<Version>3.3.0</Version>
|
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
||||||
<PrivateAssets>all</PrivateAssets>
|
|
||||||
</PackageReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Compile Include="BackOfficeExamineSearcher.cs" />
|
|
||||||
<Compile Include="ExamineExtensions.cs" />
|
|
||||||
<Compile Include="ExamineLuceneComponent.cs" />
|
|
||||||
<Compile Include="ExamineLuceneComposer.cs" />
|
|
||||||
<Compile Include="ExamineLuceneFinalComponent.cs" />
|
|
||||||
<Compile Include="ExamineLuceneFinalComposer.cs" />
|
|
||||||
<Compile Include="LuceneIndexDiagnostics.cs" />
|
|
||||||
<Compile Include="LuceneIndexDiagnosticsFactory.cs" />
|
|
||||||
<Compile Include="NoPrefixSimpleFsLockFactory.cs" />
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
||||||
<Compile Include="UmbracoContentIndex.cs" />
|
|
||||||
<Compile Include="UmbracoExamineIndexDiagnostics.cs" />
|
|
||||||
<Compile Include="UmbracoExamineIndex.cs" />
|
|
||||||
<Compile Include="LuceneIndexCreator.cs" />
|
|
||||||
<Compile Include="UmbracoIndexesCreator.cs" />
|
|
||||||
<Compile Include="UmbracoMemberIndex.cs" />
|
|
||||||
<Compile Include="..\SolutionInfo.cs">
|
|
||||||
<Link>Properties\SolutionInfo.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\Umbraco.Abstractions\Umbraco.Abstractions.csproj">
|
|
||||||
<Project>{29aa69d9-b597-4395-8d42-43b1263c240a}</Project>
|
|
||||||
<Name>Umbraco.Abstractions</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="..\Umbraco.Examine\Umbraco.Examine.csproj">
|
|
||||||
<Project>{f9b7fe05-0f93-4d0d-9c10-690b33ecbbd8}</Project>
|
|
||||||
<Name>Umbraco.Examine</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj">
|
|
||||||
<Project>{3ae7bf57-966b-45a5-910a-954d7c554441}</Project>
|
|
||||||
<Name>Umbraco.Infrastructure</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
</Project>
|
|
||||||
|
|||||||
@@ -70,10 +70,6 @@
|
|||||||
<Project>{29aa69d9-b597-4395-8d42-43b1263c240a}</Project>
|
<Project>{29aa69d9-b597-4395-8d42-43b1263c240a}</Project>
|
||||||
<Name>Umbraco.Abstractions</Name>
|
<Name>Umbraco.Abstractions</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\Umbraco.Examine.Lucene\Umbraco.Examine.Lucene.csproj">
|
|
||||||
<Project>{07fbc26b-2927-4a22-8d96-d644c667fecc}</Project>
|
|
||||||
<Name>Umbraco.Examine.Lucene</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj">
|
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj">
|
||||||
<Project>{3ae7bf57-966b-45a5-910a-954d7c554441}</Project>
|
<Project>{3ae7bf57-966b-45a5-910a-954d7c554441}</Project>
|
||||||
<Name>Umbraco.Infrastructure</Name>
|
<Name>Umbraco.Infrastructure</Name>
|
||||||
|
|||||||
@@ -564,6 +564,10 @@
|
|||||||
<Project>{fbe7c065-dac0-4025-a78b-63b24d3ab00b}</Project>
|
<Project>{fbe7c065-dac0-4025-a78b-63b24d3ab00b}</Project>
|
||||||
<Name>Umbraco.Configuration</Name>
|
<Name>Umbraco.Configuration</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
|
<ProjectReference Include="..\Umbraco.Examine.Lucene\Umbraco.Examine.Lucene.csproj">
|
||||||
|
<Project>{0fad7d2a-d7dd-45b1-91fd-488bb6cdacea}</Project>
|
||||||
|
<Name>Umbraco.Examine.Lucene</Name>
|
||||||
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\Umbraco.Examine\Umbraco.Examine.csproj">
|
<ProjectReference Include="..\Umbraco.Examine\Umbraco.Examine.csproj">
|
||||||
<Project>{f9b7fe05-0f93-4d0d-9c10-690b33ecbbd8}</Project>
|
<Project>{f9b7fe05-0f93-4d0d-9c10-690b33ecbbd8}</Project>
|
||||||
<Name>Umbraco.Examine</Name>
|
<Name>Umbraco.Examine</Name>
|
||||||
@@ -584,10 +588,6 @@
|
|||||||
<Project>{651E1350-91B6-44B7-BD60-7207006D7003}</Project>
|
<Project>{651E1350-91B6-44B7-BD60-7207006D7003}</Project>
|
||||||
<Name>Umbraco.Web</Name>
|
<Name>Umbraco.Web</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\Umbraco.Examine.Lucene\Umbraco.Examine.Lucene.csproj">
|
|
||||||
<Project>{07fbc26b-2927-4a22-8d96-d644c667fecc}</Project>
|
|
||||||
<Name>Umbraco.Examine.Lucene</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<EmbeddedResource Include="Migrations\SqlScripts\SqlResources.resx">
|
<EmbeddedResource Include="Migrations\SqlScripts\SqlResources.resx">
|
||||||
|
|||||||
@@ -117,8 +117,8 @@
|
|||||||
<Name>Umbraco.Abstractions</Name>
|
<Name>Umbraco.Abstractions</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\Umbraco.Examine.Lucene\Umbraco.Examine.Lucene.csproj">
|
<ProjectReference Include="..\Umbraco.Examine.Lucene\Umbraco.Examine.Lucene.csproj">
|
||||||
|
<Project>{0fad7d2a-d7dd-45b1-91fd-488bb6cdacea}</Project>
|
||||||
<Name>Umbraco.Examine.Lucene</Name>
|
<Name>Umbraco.Examine.Lucene</Name>
|
||||||
<Project>{07FBC26B-2927-4A22-8D96-D644C667FECC}</Project>
|
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\Umbraco.ModelsBuilder.Embedded\Umbraco.ModelsBuilder.Embedded.csproj">
|
<ProjectReference Include="..\Umbraco.ModelsBuilder.Embedded\Umbraco.ModelsBuilder.Embedded.csproj">
|
||||||
<Project>{52ac0ba8-a60e-4e36-897b-e8b97a54ed1c}</Project>
|
<Project>{52ac0ba8-a60e-4e36-897b-e8b97a54ed1c}</Project>
|
||||||
@@ -427,4 +427,4 @@
|
|||||||
<Message Text="ConfigFile: $(OriginalFileName) -> $(OutputFileName)" Importance="high" Condition="Exists('$(ModifiedFileName)')" />
|
<Message Text="ConfigFile: $(OriginalFileName) -> $(OutputFileName)" Importance="high" Condition="Exists('$(ModifiedFileName)')" />
|
||||||
<Copy SourceFiles="$(ModifiedFileName)" DestinationFiles="$(OutputFileName)" OverwriteReadOnlyFiles="true" SkipUnchangedFiles="false" Condition="Exists('$(ModifiedFileName)')" />
|
<Copy SourceFiles="$(ModifiedFileName)" DestinationFiles="$(OutputFileName)" OverwriteReadOnlyFiles="true" SkipUnchangedFiles="false" Condition="Exists('$(ModifiedFileName)')" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
@@ -63,8 +63,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Umbraco.Web", "Umbraco.Web\
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Umbraco.Tests", "Umbraco.Tests\Umbraco.Tests.csproj", "{5D3B8245-ADA6-453F-A008-50ED04BFE770}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Umbraco.Tests", "Umbraco.Tests\Umbraco.Tests.csproj", "{5D3B8245-ADA6-453F-A008-50ED04BFE770}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Umbraco.Examine.Lucene", "Umbraco.Examine.Lucene\Umbraco.Examine.Lucene.csproj", "{07FBC26B-2927-4A22-8D96-D644C667FECC}"
|
|
||||||
EndProject
|
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{E3F9F378-AFE1-40A5-90BD-82833375DBFE}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{E3F9F378-AFE1-40A5-90BD-82833375DBFE}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
..\build\NuSpecs\tools\applications.config.install.xdt = ..\build\NuSpecs\tools\applications.config.install.xdt
|
..\build\NuSpecs\tools\applications.config.install.xdt = ..\build\NuSpecs\tools\applications.config.install.xdt
|
||||||
@@ -115,6 +113,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Umbraco.TestData", "Umbraco
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Umbraco.Examine", "Umbraco.Examine\Umbraco.Examine.csproj", "{F9B7FE05-0F93-4D0D-9C10-690B33ECBBD8}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Umbraco.Examine", "Umbraco.Examine\Umbraco.Examine.csproj", "{F9B7FE05-0F93-4D0D-9C10-690B33ECBBD8}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Umbraco.Examine.Lucene", "Umbraco.Examine.Lucene\Umbraco.Examine.Lucene.csproj", "{0FAD7D2A-D7DD-45B1-91FD-488BB6CDACEA}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -135,10 +135,6 @@ Global
|
|||||||
{5D3B8245-ADA6-453F-A008-50ED04BFE770}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{5D3B8245-ADA6-453F-A008-50ED04BFE770}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{5D3B8245-ADA6-453F-A008-50ED04BFE770}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{5D3B8245-ADA6-453F-A008-50ED04BFE770}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{5D3B8245-ADA6-453F-A008-50ED04BFE770}.Release|Any CPU.Build.0 = Release|Any CPU
|
{5D3B8245-ADA6-453F-A008-50ED04BFE770}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{07FBC26B-2927-4A22-8D96-D644C667FECC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{07FBC26B-2927-4A22-8D96-D644C667FECC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{07FBC26B-2927-4A22-8D96-D644C667FECC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{07FBC26B-2927-4A22-8D96-D644C667FECC}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
{3A33ADC9-C6C0-4DB1-A613-A9AF0210DF3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{3A33ADC9-C6C0-4DB1-A613-A9AF0210DF3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{3A33ADC9-C6C0-4DB1-A613-A9AF0210DF3D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{3A33ADC9-C6C0-4DB1-A613-A9AF0210DF3D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{3A33ADC9-C6C0-4DB1-A613-A9AF0210DF3D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{3A33ADC9-C6C0-4DB1-A613-A9AF0210DF3D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
@@ -171,6 +167,10 @@ Global
|
|||||||
{F9B7FE05-0F93-4D0D-9C10-690B33ECBBD8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{F9B7FE05-0F93-4D0D-9C10-690B33ECBBD8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{F9B7FE05-0F93-4D0D-9C10-690B33ECBBD8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{F9B7FE05-0F93-4D0D-9C10-690B33ECBBD8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{F9B7FE05-0F93-4D0D-9C10-690B33ECBBD8}.Release|Any CPU.Build.0 = Release|Any CPU
|
{F9B7FE05-0F93-4D0D-9C10-690B33ECBBD8}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{0FAD7D2A-D7DD-45B1-91FD-488BB6CDACEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{0FAD7D2A-D7DD-45B1-91FD-488BB6CDACEA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{0FAD7D2A-D7DD-45B1-91FD-488BB6CDACEA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{0FAD7D2A-D7DD-45B1-91FD-488BB6CDACEA}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
Reference in New Issue
Block a user