-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e353412
commit 8f54df6
Showing
6 changed files
with
58 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// | ||
using System.Resources; | ||
// | ||
// Copyright (c) 2018 camunda services GmbH ([email protected]) | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
|
@@ -17,11 +18,11 @@ | |
// Information about this assembly is defined by the following attributes. | ||
// Change them to the values specific to your project. | ||
|
||
[assembly: AssemblyTitle("Zeebe-Client")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyTitle("Zeebe C# Client")] | ||
[assembly: AssemblyDescription("Represents an Zeebe C# client.")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("")] | ||
[assembly: AssemblyCompany("camunda services GmbH")] | ||
[assembly: AssemblyProduct("Zeebe C# Client")] | ||
[assembly: AssemblyCopyright("${AuthorCopyright}")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
@@ -30,7 +31,8 @@ | |
// The form "{Major}.{Minor}.*" will automatically update the build and revision, | ||
// and "{Major}.{Minor}.{Build}.*" will update just the revision. | ||
|
||
[assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("0.2.0")] | ||
[assembly: NeutralResourcesLanguage("en")] | ||
|
||
// The following attributes are used to specify the signing key for the assembly, | ||
// if desired. See the Mono documentation for more information about signing. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0"?> | ||
<package > | ||
<metadata> | ||
<id>zb-client</id> | ||
<version>0.2.0</version> | ||
<title>Zeebe C# client</title> | ||
<authors>Christopher Zell</authors> | ||
<owners>Zelldon</owners> | ||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> | ||
<projectUrl>https://github.com/zeebe-io/zb-csharp-client</projectUrl> | ||
<iconUrl>http://zeebe.io/img/zeebe-logo.svg</iconUrl> | ||
<requireLicenseAcceptance>true</requireLicenseAcceptance> | ||
|
||
<description> | ||
Represents an Zeebe C# client. | ||
|
||
Uses GRPC as protocol to communicate with the Zeebe Broker. | ||
For more information about the zeebe project please visit http://zeebe.io | ||
</description> | ||
<releaseNotes> | ||
Zeebe C# client was rewritten and now uses the GRPC protocol to communicate with the broker. | ||
Contains the core functionallity like: complete, fail a job and to create an job worker in C#. | ||
|
||
This release is based on the zeebe 0.14.0 release (https://github.com/zeebe-io/zeebe). | ||
</releaseNotes> | ||
<summary>Client to communicate with an zeebe broker.</summary> | ||
<tags>zeebe, zb, zb-csharp, zb-client</tags> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters