-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathMeilisearch.csproj
71 lines (68 loc) · 3.01 KB
/
Meilisearch.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<OutputType>Library</OutputType>
<PackageId>MeiliSearch</PackageId>
<Version>0.16.0</Version>
<Description>.NET wrapper for Meilisearch, an open-source search engine</Description>
<RepositoryUrl>https://github.com/meilisearch/meilisearch-dotnet</RepositoryUrl>
<PackageTags>meilisearch;dotnet;sdk;search-engine;search;instant-search</PackageTags>
<Authors>Meilisearch</Authors>
<PackageProjectUrl>https://meilisearch.com</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<!-- Warnings for missing XML documentation are only visible during dev time -->
<!-- You may want to remove the NoWarn node in case documentation will be mandatory in the future -->
<NoWarn Condition=" '$(Configuration)' == 'Release'">$(NoWarn);1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.3.1" />
<PackageReference Include="System.Net.Http.Json" Version="6.0.2" />
</ItemGroup>
<ItemGroup>
<None Include="../../README.md" Pack="true" PackagePath="\" />
<None Include="../../assets/logo.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Meilisearch.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<Compile Update="Index.Documents.cs">
<DependentUpon>Index.cs</DependentUpon>
</Compile>
<Compile Update="Index.Dictionary.cs">
<DependentUpon>Index.cs</DependentUpon>
</Compile>
<Compile Update="Index.Tasks.cs">
<DependentUpon>Index.cs</DependentUpon>
</Compile>
<Compile Update="Index.StopWords.cs">
<DependentUpon>Index.cs</DependentUpon>
</Compile>
<Compile Update="Index.Attributes.cs">
<DependentUpon>Index.cs</DependentUpon>
</Compile>
<Compile Update="Index.Synonyms.cs">
<DependentUpon>Index.cs</DependentUpon>
</Compile>
<Compile Update="Index.RankingRules.cs">
<DependentUpon>Index.cs</DependentUpon>
</Compile>
<Compile Update="Index.Settings.cs">
<DependentUpon>Index.cs</DependentUpon>
</Compile>
<Compile Update="Index.TypoTolerance.cs">
<DependentUpon>Index.cs</DependentUpon>
</Compile>
<Compile Update="Index.SearchCutoffMs.cs">
<DependentUpon>Index.cs</DependentUpon>
</Compile>
</ItemGroup>
</Project>