forked from devlooped/moq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Moq.nuspec
39 lines (39 loc) · 2.02 KB
/
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Moq</id>
<version>4.8</version>
<title>Moq: an enjoyable mocking library</title>
<authors>Daniel Cazzulino, kzu</authors>
<owners>Daniel Cazzulino, Clarius Labs, kzu</owners>
<licenseUrl>https://raw.githubusercontent.com/moq/moq4/master/License.txt</licenseUrl>
<projectUrl>https://github.com/moq/moq4</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Moq is the most popular and friendly mocking framework for .NET</description>
<tags>moq tdd mocking mocks unittesting agile unittest</tags>
<releaseNotes>A changelog is available at https://github.com/moq/moq4/blob/master/CHANGELOG.md.</releaseNotes>
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="Castle.Core" version="4.2.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.3.0" />
<dependency id="System.ValueTuple" version="4.4.0" />
</group>
<group targetFramework=".NETStandard1.3">
<dependency id="NETStandard.Library" version="1.6.1" />
<dependency id="System.Linq.Queryable" version="4.3.0" />
<dependency id="System.Reflection.TypeExtensions" version="4.3.0" />
<dependency id="Castle.Core" version="4.2.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.3.0" />
<dependency id="System.ValueTuple" version="4.4.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="Source\bin\$configuration$\net45\Moq.dll" target="lib\net45" />
<file src="Source\bin\$configuration$\net45\Moq.pdb" target="lib\net45" />
<file src="Source\bin\$configuration$\net45\Moq.xml" target="lib\net45" />
<file src="Source\bin\$configuration$\netstandard1.3\Moq.dll" target="lib\netstandard1.3" />
<file src="Source\bin\$configuration$\netstandard1.3\Moq.pdb" target="lib\netstandard1.3" />
<file src="Source\bin\$configuration$\netstandard1.3\Moq.xml" target="lib\netstandard1.3" />
</files>
</package>