forked from OrleansContrib/OrleansV2.Fork.Indexing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrleans.Indexing.Tests.csproj
34 lines (32 loc) · 1.8 KB
/
Orleans.Indexing.Tests.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Orleans.Indexing.Tests</RootNamespace>
<AssemblyName>Orleans.Indexing.Tests</AssemblyName>
<OrleansBuildTimeCodeGen>true</OrleansBuildTimeCodeGen>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionsVersion)" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.0" />
<PackageReference Include="Orleans.Persistence.CosmosDB" Version="1.1.42" />
<PackageReference Include="xunit" Version="$(xUnitVersion)" />
<PackageReference Include="Xunit.SkippableFact" Version="$(XunitSkippableFactVersion)" />
<DotNetCliToolReference Include="dotnet-xunit" Version="$(xUnitVersion)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Orleans.Core.Abstractions\Orleans.Core.Abstractions.csproj" />
<ProjectReference Include="..\..\src\Orleans.Core\Orleans.Core.csproj" />
<ProjectReference Include="..\..\src\Orleans.Indexing\Orleans.Indexing.csproj" />
<ProjectReference Include="..\..\src\Orleans.Runtime\Orleans.Runtime.csproj" />
<ProjectReference Include="..\..\src\Orleans.TestingHost\Orleans.TestingHost.csproj" />
<ProjectReference Include="..\Tester\Tester.csproj" />
<ProjectReference Include="..\TestInfrastructure\TestExtensions\TestExtensions.csproj" />
<ProjectReference Include="..\Grains\TestGrainInterfaces\TestGrainInterfaces.csproj" />
<ProjectReference Include="..\Grains\TestGrains\TestGrains.csproj" />
</ItemGroup>
</Project>