Skip to content

Commit

Permalink
version 3.4.12.4
Browse files Browse the repository at this point in the history
  • Loading branch information
shayhatsor committed Oct 4, 2019
1 parent b5228e1 commit f185847
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/csharp/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<SignAssembly>true</SignAssembly>
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
<DelaySign>False</DelaySign>
<VersionPrefix>3.4.12.2</VersionPrefix>
<VersionPrefix>3.4.12.4</VersionPrefix>
<langVersion>latest</langVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
Expand Down
29 changes: 20 additions & 9 deletions src/csharp/src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,41 @@
<Import Project="..\Directory.Build.props" />

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeSymbols>False</IncludeSymbols>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<EmbedAllSources>True</EmbedAllSources>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<DebugType>Embedded</DebugType>
</PropertyGroup>

<Product>Apache Zookeeper .NET Client</Product>
<PropertyGroup Condition="'$(TargetFramework)'=='net461'">
<DebugType>Portable</DebugType>
</PropertyGroup>

<PropertyGroup>
<Copyright>© Shay Hazor</Copyright>
<Authors>Shay Hazor</Authors>
<Authors>shayhatsor2</Authors>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/shayhatsor/zookeeper</RepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<PackageReleaseNotes>
This project is actively maintained at: https://github.com/shayhatsor/zookeeper
Please feel free to open an issue or ask a question there.
</PackageReleaseNotes>
<PackageIconUrl>https://raw.githubusercontent.com/shayhatsor/zookeeper/trunk/zookeeper.bmp</PackageIconUrl>
<PackageProjectUrl>https://github.com/shayhatsor/zookeeper</PackageProjectUrl>
<PackageIconUrl>https://svn.apache.org/repos/asf/comdev/project-logos/originals/zookeeper.svg</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PublishRepositoryUrl>True</PublishRepositoryUrl>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageIcon>ZooKeeperNetEx.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<None Include="../../ZooKeeperNetEx.png" Pack="true" PackagePath=""/>
<None Include="../../ZooKeeperNetEx.png" Pack="true" PackagePath="" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@

<PropertyGroup>
<Description>.NET async Distributed Recipes For ZooKeeper: Queue, Lock and Leader Election.</Description>
<AssemblyTitle>Apache ZooKeeper .NET async Recipes</AssemblyTitle>
<AssemblyName>ZooKeeperNetEx.Recipes</AssemblyName>
<Summary>$(Description)</Summary>

<AssemblyTitle>Apache ZooKeeper .NET async Recipes</AssemblyTitle>
<Product>$(AssemblyTitle)</Product>
<Title>$(AssemblyTitle)</Title>

<PackageId>ZooKeeperNetEx.Recipes</PackageId>
<AssemblyName>$(PackageId)</AssemblyName>

<PackageTags>ZooKeeper;Recipes;.NET;Lock;Leader Election;Queue</PackageTags>
</PropertyGroup>

Expand Down
12 changes: 9 additions & 3 deletions src/csharp/src/ZooKeeperNetEx/ZooKeeperNetEx.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@

<PropertyGroup>
<Description>A .NET async Client fully compliant with ZooKeeper, supporting all features. Fully Task-based Asynchronous (async/await). A great measure has been taken to follow the logic of the official Java client, including all relevant unit tests. In fact, the code is almost identical. Thus allowing easy evolution alongside the Java version.</Description>
<AssemblyTitle>Apache ZooKeeper .NET async Client</AssemblyTitle>
<AssemblyName>ZooKeeperNetEx</AssemblyName>
<Summary>$(Description)</Summary>

<AssemblyTitle>Apache ZooKeeper .NET async Client</AssemblyTitle>
<Product>$(AssemblyTitle)</Product>
<Title>$(AssemblyTitle)</Title>

<PackageId>ZooKeeperNetEx</PackageId>
<PackageTags>ZooKeeper;.NET;Client;Async</PackageTags>
<AssemblyName>$(PackageId)</AssemblyName>

<PackageTags>ZooKeeper;.NET;Client;Async</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit f185847

Please sign in to comment.