Skip to content

Commit dabf258

Browse files
committed
Added nuspec file
1 parent a2f8848 commit dabf258

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

NTestDataBuilder/NTestDataBuilder.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
<Compile Include="Properties\AssemblyInfo.cs" />
5050
</ItemGroup>
5151
<ItemGroup>
52+
<None Include="NTestDataBuilder.nuspec" />
5253
<None Include="packages.config" />
5354
</ItemGroup>
5455
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<package>
3+
<metadata>
4+
<id>
5+
NTestDataBuilder
6+
</id>
7+
<version>
8+
0.1.0.0
9+
</version>
10+
<authors>
11+
Robert Moore
12+
</authors>
13+
<description>
14+
NTestDataBuilder provides you with the code instructure to easily and quickly generate test fixture data for your automated tests in a terse, readable and maintainable way using the Test Data Builder pattern.
15+
</description>
16+
<projectUrl>
17+
https://github.com/robdmoore/NTestDataBuilder
18+
</projectUrl>
19+
<licenseUrl>
20+
https://github.com/robdmoore/NTestDataBuilder/blob/master/LICENSE
21+
</licenseUrl>
22+
<iconUrl>
23+
https://raw.github.com/robdmoore/NTestDataBuilder/master/logo.png
24+
</iconUrl>
25+
<tags>
26+
testing, data generation, test fixture, nbuilder, nsubstitute, mocking
27+
</tags>
28+
<language>
29+
en-US
30+
</language>
31+
<dependencies>
32+
<dependency id="NSubstitute" version="1.6.0.0" />
33+
<dependency id="NBuilder" version="3.0.1.1" />
34+
</dependencies>
35+
</metadata>
36+
<files>
37+
<file src="bin\Release\NTestDataBuilder.dll" target="lib\NET40" />
38+
<file src="bin\Release\NTestDataBuilder.pdb" target="lib\NET40" />
39+
<file src="bin\Release\NTestDataBuilder.XML" target="lib\NET40" />
40+
</files>
41+
</package>

0 commit comments

Comments
 (0)