-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathEntityFrameworkCore.Testing.Moq.nuspec
42 lines (41 loc) · 2.59 KB
/
EntityFrameworkCore.Testing.Moq.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>EntityFrameworkCore.Testing.Moq</id>
<version>9.0.0</version>
<authors>rgvlee</authors>
<owners>rgvlee</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="file">LICENSE</license>
<projectUrl>https://github.com/rgvlee/EntityFrameworkCore.Testing</projectUrl>
<description>Adds relational support to the Microsoft EntityFrameworkCore in-memory database provider by mocking relational operations.
EntityFrameworkCore.Testing v1.x = EntityFrameworkCore 2 (2.1.0+)
EntityFrameworkCore.Testing v2.x = EntityFrameworkCore 3
EntityFrameworkCore.Testing v3.x = EntityFrameworkCore 5
EntityFrameworkCore.Testing v4.x = EntityFrameworkCore 6
EntityFrameworkCore.Testing v5.x = EntityFrameworkCore 7
EntityFrameworkCore.Testing v8.x = EntityFrameworkCore 8
EntityFrameworkCore.Testing v9.x = EntityFrameworkCore 9</description>
<copyright>Copyright (c) 2024 Lee Anderson</copyright>
<tags>EntityFrameworkCore EFCore Moq mock testing</tags>
<repository url="https://github.com/rgvlee/EntityFrameworkCore.Testing" />
<dependencies>
<group targetFramework="net8.0">
<dependency id="Microsoft.EntityFrameworkCore.InMemory" version="[9,10)" exclude="Build,Analyzers" />
<dependency id="Microsoft.EntityFrameworkCore.Relational" version="[9,10)" exclude="Build,Analyzers" />
<dependency id="Microsoft.Extensions.Logging" version="[9,10)" exclude="Build,Analyzers" />
<dependency id="Moq" version="4.9.0" exclude="Build,Analyzers" />
<dependency id="rgvlee.Core" version="1.2.1" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
<files>
<file src="src\EntityFrameworkCore.Testing.Common\bin\Release\net8.0\EntityFrameworkCore.Testing.Common.dll" target="lib\net8.0" />
<file src="src\EntityFrameworkCore.Testing.Common\bin\Release\net8.0\EntityFrameworkCore.Testing.Common.pdb" target="lib\net8.0" />
<file src="src\EntityFrameworkCore.Testing.Common\bin\Release\net8.0\EntityFrameworkCore.Testing.Common.xml" target="lib\net8.0" />
<file src="src\EntityFrameworkCore.Testing.Moq\bin\Release\net8.0\EntityFrameworkCore.Testing.Moq.dll" target="lib\net8.0" />
<file src="src\EntityFrameworkCore.Testing.Moq\bin\Release\net8.0\EntityFrameworkCore.Testing.Moq.pdb" target="lib\net8.0" />
<file src="src\EntityFrameworkCore.Testing.Moq\bin\Release\net8.0\EntityFrameworkCore.Testing.Moq.xml" target="lib\net8.0" />
<file src="LICENSE" />
</files>
</package>