Skip to content

Commit d61fd38

Browse files
author
Jacques Kang
committed
- build nuget packages
- show build status on README.md
1 parent 5f1cc2f commit d61fd38

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Build Status](https://travis-ci.org/jacqueskang/IpcServiceFramework.svg?branch=develop)](https://travis-ci.org/jacqueskang/IpcServiceFramework)
2+
13
# IpcServiceFramework
24

35
A .NET Core lightweight inter-process communication framework allowing invoking a service via named pipeline (in a similar way as WCF, which is currently unavailable for .NET Core).

src/JKang.IpcServiceFramework.Client/JKang.IpcServiceFramework.Client.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>JKang.IpcServiceFramework</RootNamespace>
6+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
7+
<Authors>Jacques Kang</Authors>
8+
<Company />
9+
<Copyright>Jacques Kang</Copyright>
10+
<PackageLicenseUrl>https://github.com/jacqueskang/IpcServiceFramework/blob/develop/LICENSE</PackageLicenseUrl>
11+
<RepositoryUrl>https://github.com/jacqueskang/IpcServiceFramework</RepositoryUrl>
12+
<PackageTags>dotnetcore,named-pipes,interprocess-communication</PackageTags>
613
</PropertyGroup>
714

815
<ItemGroup>

src/JKang.IpcServiceFramework.Core/JKang.IpcServiceFramework.Core.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>JKang.IpcServiceFramework</RootNamespace>
6+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
7+
<Authors>Jacques Kang</Authors>
8+
<Company />
9+
<Description>A lightweight .NET Core inter-process communication framework allowing invoking a service via named pipeline in a similar way as WCF.</Description>
10+
<Copyright>Jacques Kang</Copyright>
11+
<PackageLicenseUrl>https://github.com/jacqueskang/IpcServiceFramework/blob/develop/LICENSE</PackageLicenseUrl>
12+
<RepositoryUrl>https://github.com/jacqueskang/IpcServiceFramework</RepositoryUrl>
13+
<PackageTags>dotnetcore,named-pipes,interprocess-communication</PackageTags>
614
</PropertyGroup>
715

816
<ItemGroup>

src/JKang.IpcServiceFramework.Server/JKang.IpcServiceFramework.Server.csproj

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>JKang.IpcServiceFramework</RootNamespace>
6+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
7+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
8+
<Authors>Jacques Kang</Authors>
9+
<Company />
10+
<Description>A lightweight .NET Core inter-process communication framework allowing invoking a service via named pipeline in a similar way as WCF.
11+
This package is for server hosting.</Description>
12+
<Copyright>Jacques Kang</Copyright>
13+
<PackageLicenseUrl>https://github.com/jacqueskang/IpcServiceFramework/blob/develop/LICENSE</PackageLicenseUrl>
14+
<PackageProjectUrl></PackageProjectUrl>
15+
<RepositoryUrl>https://github.com/jacqueskang/IpcServiceFramework</RepositoryUrl>
16+
<PackageTags>dotnetcore,named-pipes,interprocess-communication</PackageTags>
617
</PropertyGroup>
718

819
<ItemGroup>

0 commit comments

Comments
 (0)