Skip to content

Commit

Permalink
Raise version and correct product name in readme files.
Browse files Browse the repository at this point in the history
  • Loading branch information
tusmester committed Jun 13, 2018
1 parent ecfb4ae commit cedaed1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 14 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# sensenet ECM Tools
# sensenet Tools

[![Join the chat at https://gitter.im/SenseNet/sn-tools](https://badges.gitter.im/SenseNet/sn-tools.svg)](https://gitter.im/SenseNet/sn-tools?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![NuGet](https://img.shields.io/nuget/v/SenseNet.Tools.svg)](https://www.nuget.org/packages/SenseNet.Tools)

This library contains useful tools for developers ranging from tasks as small as retrying an operation multiple times to a robust trace component.

The library is **independent from sensenet ECM** and it does not have any sensenet ECM-related dependencies. It is the other way around: [sensenet ECM](https://github.com/SenseNet/sensenet) relies heavily on the tools published in this library.
The library is **independent from sensenet** and it does not have any sensenet-related dependencies. It is the other way around: [sensenet](https://github.com/SenseNet/sensenet) relies heavily on the tools published in this library.

You can even use it in your custom project that has nothing to do with Sense/Net ECM!
You can even use it in your custom project that has nothing to do with sensenet!

This is a constantly evolving component, we plan to add new features to it as needed. Feel free to contribute or make suggestions on how to improve it!

Expand All @@ -16,7 +16,7 @@ This is a lightweight but powerful **API for retrying operations** that should b

If no error occurs, the operation will be executed only once of course. After retrying for the given number of times - if the error still occurs - the exception will be thrown for the caller to catch.

Only trhe provided exception type is monitored and suppressed. All other exceptions are thrown immediately.
Only the provided exception type is monitored and suppressed. All other exceptions are thrown immediately.

````csharp
// retry something maximum 3 times, waiting 10 milliseconds in between
Expand All @@ -35,7 +35,7 @@ var result = await Retrier.RetryAsync<int>(3, 10, async () =>
````

## Diagnostics
In this namespace you'll find easy-to-use and extendable tracing and logging components. We build on them extensively in the core sensenet ECM project but they can also be used in any kind of tool or application as a lightweight logging technology.
In this namespace you'll find easy-to-use and extendable tracing and logging components. We build on them extensively in the core sensenet project but they can also be used in any kind of tool or application as a lightweight logging technology.

```csharp
SnLog.WriteInformation("ContentTypeManager loaded.");
Expand Down
6 changes: 3 additions & 3 deletions src/SenseNet.Tools.Tests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
[assembly: ComVisible(false)]
[assembly: Guid("ec7fc58f-81cc-411b-92e0-079b7c39d0a5")]

[assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
[assembly: AssemblyInformationalVersion("2.2.0")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: AssemblyInformationalVersion("3.0.0")]
4 changes: 1 addition & 3 deletions src/SenseNet.Tools/Diagnostics/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,4 @@ We have a predefined list of categories and you can either use the Custom catego

The trace lines will be written to the file system in a buffered way so that it does not take too much resources.

For details please visit the following article.

[SnTrace wiki article](http://wiki.sensenet.com/SnTrace)
For details please visit [this article](/docs/sntrace.md).
6 changes: 3 additions & 3 deletions src/SenseNet.Tools/SenseNet.Tools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RootNamespace>SenseNet.Tools</RootNamespace>
<AssemblyName>SenseNet.Tools</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>2.9.100</Version>
<Version>3.0.0</Version>
<Title>sensenet Tools</Title>
<Authors>tusmester,kavics</Authors>
<Company>Sense/Net Inc.</Company>
Expand All @@ -21,8 +21,8 @@
<PackageReleaseNotes>See release notes on GitHub.</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<Language>en-US</Language>
<AssemblyVersion>2.9.100.0</AssemblyVersion>
<FileVersion>2.9.100.0</FileVersion>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>3.0.0.0</FileVersion>
<DebugType>Full</DebugType>
</PropertyGroup>

Expand Down

0 comments on commit cedaed1

Please sign in to comment.