Skip to content

Commit 7a71eb5

Browse files
Release nuget
1 parent 061095b commit 7a71eb5

File tree

5 files changed

+50
-1
lines changed

5 files changed

+50
-1
lines changed

Nethereum.TestRPCRunner.Net45/Nethereum.TestRPCRunner.Net45.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@
5151
<Link>testrpc-portable.js</Link>
5252
</EmbeddedResource>
5353
</ItemGroup>
54+
<ItemGroup>
55+
<None Include="Nethereum.TestRPCRunner.Net45.nuspec" />
56+
</ItemGroup>
5457
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5558
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5659
Other similar extension points exist, see Microsoft.Common.targets.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0"?>
2+
<package >
3+
<metadata>
4+
<id>Nethereum.TestRPCRunner.Net45</id>
5+
<version>1.0.0</version>
6+
<title>Nethereum TestRPC Runner Net45</title>
7+
<authors>Juan Blanco</authors>
8+
<owners>Juan Blanco</owners>
9+
<licenseUrl>https://raw.githubusercontent.com/Nethereum/Nethereum/master/LICENSE.md</licenseUrl>
10+
<projectUrl>http://www.nethereum.com</projectUrl>
11+
<iconUrl>https://raw.githubusercontent.com/Nethereum/Nethereum/master/logos/logo64x64.png</iconUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>
14+
TestRpc embedded in Nethereum to simplify smart contract and Ethereum integration testing.
15+
</description>
16+
<summary>
17+
TestRpc embedded in Nethereum to simplify smart contract and Ethereum integration testing.
18+
It embeds the portable (packed) version of Test Rpc and allows to launch / close on demand any Ethereum Test Rpc server managed by .Net.
19+
This is the .net45 version which simplifies integration on a Windows / Visual Studio enviroment
20+
You will require to have node installed and your path set.
21+
Check Nethereum for unit tests samples.
22+
</summary>
23+
<copyright>Copyright 2017</copyright>
24+
<tags>Ethereum TestRpc UnitTesting Nethereum Blockchain</tags>
25+
</metadata>
26+
</package>
4.07 MB
Binary file not shown.

Nethereum.TestRPCRunner/project.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0",
3+
"description": "TestRpc embedded in Nethereum to simplify smart contract and Ethereum integration testing.",
4+
"authors": [ "Juan Blanco" ],
5+
"copyright": "Juan Blanco",
6+
"title": "Nethereum.TestRPCRunner",
7+
"packOptions": {
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/Nethereum"
11+
},
12+
"summary": "TestRpc embedded in Nethereum to simplify smart contract and Ethereum integration testing. It embeds the portable (packed) version of Test Rpc and allows to launch / close on demand any Ethereum Test Rpc server managed by .Net. This is the .netstandard 1.3 version for cross platform usage. You will require to have node installed and your path set. Check Nethereum for unit tests samples.",
13+
"tags": [ "Netherum", "Ethereum", "Blockchain", "TestRPC" ],
14+
"projectUrl": "http://www.nethereum.com",
15+
"licenseUrl": "https://raw.githubusercontent.com/Nethereum/Nethereum/master/LICENSE.md",
16+
"iconUrl": "https://raw.githubusercontent.com/Nethereum/Nethereum/master/logos/logo64x64.png"
17+
},
318
"dependencies": {
419
"Microsoft.NETCore.Portable.Compatibility": "1.0.1",
520
"NETStandard.Library": "1.6.0",

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ Latest version of Node is recommended.
1010
There are 2 versions / projects. A generic .net 4.5 and a .Net standard 1.3, both sharing the same code and functionality.
1111
The .Net 4.5 has been created for simpler integration with Visual Studio and the .Net standard for portability and .net core support.
1212

13+
| Package | Nuget |
14+
| ------------- |:-------------:|
15+
| Nethereum.TestRpcRunner | [![NuGet version](https://badge.fury.io/nu/nethereum.testrpcrunner.svg)](https://badge.fury.io/nu/nethereum.testrpcrunner)|
16+
| Nethereum.TestRpcRunner.Net45| [![NuGet version](https://badge.fury.io/nu/nethereum.testrpcrunner.net45.svg)](https://badge.fury.io/nu/nethereum.testrpcrunner.net45)|
17+
1318
## Usage
1419

1520
Just create a new instance of the launcher and use the Arguments property to specify any options for TestRpc. For more info on the different type of options check the TestRpc [Readme](https://github.com/ethereumjs/testrpc) in Github.

0 commit comments

Comments
 (0)