-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathSharpRepository.Tests.Integration.csproj
More file actions
52 lines (45 loc) · 2.59 KB
/
Copy pathSharpRepository.Tests.Integration.csproj
File metadata and controls
52 lines (45 loc) · 2.59 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net461</TargetFramework>
<DebugType>Full</DebugType>
<AssemblyName>SharpRepository.Tests.Integration</AssemblyName>
<RootNamespace>SharpRepository.Tests.Integration</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
<PackageReference Include="EntityFramework.SqlServerCompact" Version="6.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Moq" Version="4.10.0" />
<PackageReference Include="NUnit" Version="3.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.11.0" />
<PackageReference Include="RavenDB.Embedded" Version="3.5.4" />
<PackageReference Include="Shouldly" Version="3.0.1" />
<PackageReference Include="StructureMap" Version="4.7.0" />
<PackageReference Include="System.Data.SQLite" Version="1.0.109.2" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharpRepository.CacheRepository\SharpRepository.CacheRepository.csproj" />
<ProjectReference Include="..\SharpRepository.EfRepository\SharpRepository.EfRepository.csproj" />
<ProjectReference Include="..\SharpRepository.RavenDbRepository\SharpRepository.RavenDbRepository.csproj" />
<ProjectReference Include="..\SharpRepository.Db4oRepository\SharpRepository.Db4oRepository.csproj" />
<ProjectReference Include="..\SharpRepository.XmlRepository\SharpRepository.XmlRepository.csproj" />
<ProjectReference Include="..\SharpRepository.CouchDbRepository\SharpRepository.CouchDbRepository.csproj" />
<ProjectReference Include="..\SharpRepository.EfCoreRepository\SharpRepository.EfCoreRepository.csproj" />
<ProjectReference Include="..\SharpRepository.InMemoryRepository\SharpRepository.InMemoryRepository.csproj" />
<ProjectReference Include="..\SharpRepository.Ioc.StructureMap\SharpRepository.Ioc.StructureMap.csproj" />
<ProjectReference Include="..\SharpRepository.MongoDbRepository\SharpRepository.MongoDbRepository.csproj" />
<ProjectReference Include="..\SharpRepository.Repository\SharpRepository.Repository.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Transactions" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>