-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVectorIndexScenarioSuite.csproj
More file actions
72 lines (72 loc) · 3.96 KB
/
VectorIndexScenarioSuite.csproj
File metadata and controls
72 lines (72 loc) · 3.96 KB
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
72
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
<PropertyGroup>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.50.0-preview.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="YamlDotNet" Version="16.1.0" />
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="runbooks/wikipedia-1M_expirationtime_runbook.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="runbooks/wikipedia-1M_expirationtime_replace_only_runbook.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="runbooks/wikipedia-1M_expirationtime_replace_delete_runbook.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="runbooks/wikipedia-35M_expirationtime_runbook.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="runbooks/wikipedia-35M_expirationtime_replace_only_runbook.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="runbooks/wikipedia-35M_expirationtime_replace_delete_runbook.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Include="src\EmbeddingScenarioBase.cs" />
<Compile Include="src\BinaryFormat.cs" />
<Compile Include="src\EmbeddingDocumentBase.cs" />
<Compile Include="src\filtersearch\YFCCScenario.cs" />
<Compile Include="src\filtersearch\YFCCDocument.cs" />
<Compile Include="src\GroundTruthValidator.cs" />
<Compile Include="src\JsonDocumentFactory.cs" />
<Compile Include="src\MSMarcoEmbeddingOnlyScenario.cs" />
<Compile Include="src\BigANNSiftEmbeddingOnlyScenario.cs" />
<Compile Include="src\MSTuringEmbeddingOnlyScenario.cs" />
<Compile Include="src\Program.cs" />
<Compile Include="src\Runbook.cs" />
<Compile Include="src\Scenario.cs" />
<Compile Include="src\ScenarioMetrics.cs" />
<Compile Include="src\Scenarios.cs" />
<Compile Include="src\WikiCohereEnglishEmbeddingBase.cs" />
<Compile Include="src\streaming\WikiCohereEnglishEmbeddingOnly1MDeleteReplaceStreamingScenario.cs" />
<Compile Include="src\streaming\WikiCohereEnglishEmbeddingOnly1MDeleteStreamingScenario.cs" />
<Compile Include="src\streaming\WikiCohereEnglishEmbeddingOnly1MReplaceStreamingScenario.cs" />
<Compile Include="src\streaming\WikiCohereEnglishEmbeddingOnly35MDeleteReplaceStreamingScenario.cs" />
<Compile Include="src\streaming\WikiCohereEnglishEmbeddingOnly35MDeleteStreamingScenario.cs" />
<Compile Include="src\streaming\WikiCohereEnglishEmbeddingOnly35MReplaceStreamingScenario.cs" />
<Compile Include="src\WikiCohereEnglishEmbeddingOnlyScenario.cs" />
<Compile Include="src\filtersearch\AutomotiveEcommerceDocument.cs" />
<Compile Include="src\filtersearch\AutomotiveEcommerceScenario.cs" />
</ItemGroup>
</Project>