2024-10-01 22:41:07 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-10-01 23:33:26 -04:00
|
|
|
|
<Version>1.0.0</Version>
|
2024-10-01 22:41:07 -04:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<RootNamespace>meilisearch.NET</RootNamespace>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="meilisearch-linux-arm" />
|
|
|
|
|
|
<Content Include="meilisearch-linux-arm">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<None Remove="meilisearch-linux-x64" />
|
|
|
|
|
|
<Content Include="meilisearch-linux-x64">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<None Remove="meilisearch-macos-arm" />
|
|
|
|
|
|
<Content Include="meilisearch-macos-arm">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<None Remove="meilisearch-macos-x64" />
|
|
|
|
|
|
<Content Include="meilisearch-macos-x64">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<None Remove="meilisearch-windows.exe" />
|
|
|
|
|
|
<Content Include="meilisearch-windows.exe">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2025-03-01 03:13:00 -05:00
|
|
|
|
<None Remove="data.mdb" />
|
|
|
|
|
|
<Content Include="data.mdb">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<None Remove="lock.mdb" />
|
|
|
|
|
|
<Content Include="lock.mdb">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2024-10-01 22:41:07 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="MeiliSearch" Version="0.15.3" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.2" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
|
|
|
|
|
|
<PackageReference Include="System.Text.Json" Version="8.0.4" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|