-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVectorIndexScenarioSuite.Tests.csproj
More file actions
30 lines (30 loc) · 1.19 KB
/
VectorIndexScenarioSuite.Tests.csproj
File metadata and controls
30 lines (30 loc) · 1.19 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<PropertyGroup>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<ItemGroup>
<None Update="bootemulator.ps1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MSTest.TestAdapter" Version="3.8.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.8.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<ProjectReference Include="..\VectorIndexScenarioSuite\VectorIndexScenarioSuite.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="test\FailedAndCustomIdIngestionTest.cs" />
<Compile Include="test\WikiCohereTest.cs" />
<Compile Include="test\VectorTestBase.cs" />
</ItemGroup>
</Project>