| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| |
| --> |
| <Project Sdk="Microsoft.NET.Sdk"> |
| |
| <Import Project="$(SolutionDir)TestTargetFramework.props" /> |
| |
| <PropertyGroup> |
| <AssemblyTitle>Lucene.Net.Tests.QueryParser</AssemblyTitle> |
| |
| <RootNamespace>Lucene.Net.QueryParsers</RootNamespace> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <None Remove="Support\Flexible\Core\Messages\lucene-net-icon-32x32.png" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <!-- For testing whether we can get an image from a localized resource --> |
| <EmbeddedResource Include="Support\Flexible\Core\Messages\lucene-net-icon-32x32.png" /> |
| <EmbeddedResource Include="**/*.xml" Exclude="bin/**/*;obj/**/*" Label="XML Test Data" /> |
| <EmbeddedResource Include="**/*.xsl" Exclude="bin/**/*;obj/**/*" Label="XSL Test Data" /> |
| <EmbeddedResource Include="**/*.txt" Exclude="bin/**/*;obj/**/*" Label="Text Test Data" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <ProjectReference Include="..\Lucene.Net\Lucene.Net.csproj"> |
| <SetTargetFramework>$(SetTargetFramework)</SetTargetFramework> |
| </ProjectReference> |
| <ProjectReference Include="..\Lucene.Net.Codecs\Lucene.Net.Codecs.csproj"> |
| <SetTargetFramework>$(SetTargetFramework)</SetTargetFramework> |
| </ProjectReference> |
| <ProjectReference Include="..\Lucene.Net.Analysis.Common\Lucene.Net.Analysis.Common.csproj"> |
| <SetTargetFramework>$(SetTargetFramework)</SetTargetFramework> |
| </ProjectReference> |
| <ProjectReference Include="..\Lucene.Net.Queries\Lucene.Net.Queries.csproj"> |
| <SetTargetFramework>$(SetTargetFramework)</SetTargetFramework> |
| </ProjectReference> |
| <ProjectReference Include="..\Lucene.Net.QueryParser\Lucene.Net.QueryParser.csproj"> |
| <SetTargetFramework>$(SetTargetFramework)</SetTargetFramework> |
| </ProjectReference> |
| <ProjectReference Include="..\Lucene.Net.Sandbox\Lucene.Net.Sandbox.csproj"> |
| <SetTargetFramework>$(SetTargetFramework)</SetTargetFramework> |
| </ProjectReference> |
| <ProjectReference Include="..\Lucene.Net.TestFramework\Lucene.Net.TestFramework.csproj"> |
| <SetTargetFramework>$(SetTargetFramework)</SetTargetFramework> |
| </ProjectReference> |
| </ItemGroup> |
| |
| <Import Project="$(SolutionDir).build/TestReferences.Common.targets" /> |
| |
| <ItemGroup> |
| <Compile Update="Support\Flexible\Core\Messages\MessagesTest.Designer.cs"> |
| <DesignTime>True</DesignTime> |
| <AutoGen>True</AutoGen> |
| <DependentUpon>MessagesTest.resx</DependentUpon> |
| </Compile> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <EmbeddedResource Update="Support\Flexible\Core\Messages\MessagesTest.resx"> |
| <Generator>ResXFileCodeGenerator</Generator> |
| <LastGenOutput>MessagesTest.Designer.cs</LastGenOutput> |
| </EmbeddedResource> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <Folder Include="Resources\" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <PackageReference Include="TimeZoneConverter" Version="$(TimeZoneConverterPackageVersion)" /> |
| </ItemGroup> |
| |
| </Project> |