-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCone.nuspec
More file actions
30 lines (29 loc) · 1.3 KB
/
Cone.nuspec
File metadata and controls
30 lines (29 loc) · 1.3 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
<?xml version="1.0"?>
<package>
<metadata>
<id>Cone</id>
<version>$version$</version>
<authors>Torbjörn Gyllebring</authors>
<copyright>Copyright 2017</copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>a more ergonomic checkin/testing framework for .Net</summary>
<description>
Cone aims to make checking more ergonomic testing experience by having test
and domain code share the same concepts. Checks are written in the same way as
they would be written in the production code thus reducing cognitive load and
nudging us towards a richer domain model over reliance on fancy matcher libraries.
Say no to FluentCobol, say hello to Check.That(() => actual == expected);
</description>
<releaseNotes>Let's get this NuGet party started.</releaseNotes>
<projectUrl>https://github.com/drunkcod/Cone</projectUrl>
<tags></tags>
<dependencies>
<dependency id="Newtonsoft.Json" version="11.0.1" />
</dependencies>
</metadata>
<files>
<file src="Build\Cone\$Configuration$\**" target="lib\" exclude="**\Newtonsoft.Json.dll" />
<file src="dotnet-conesole.targets" target="build\Cone.targets" />
<file src="dotnet-conesole.targets" target="buildMultiTargeting\Cone.targets" />
</files>
</package>