Skip to content

Commit ddcc8e9

Browse files
authored
Merge pull request #1 from I-RzR-I/feature/Update-Lib-Version
Update reference package version.
2 parents 6489ff1 + 72771a2 commit ddcc8e9

File tree

5 files changed

+8
-51
lines changed

5 files changed

+8
-51
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![NuGet Version](https://img.shields.io/nuget/v/AggregatedGenericResultMessage.Web.svg?style=flat&logo=nuget)](https://www.nuget.org/packages/AggregatedGenericResultMessage.Web/)
44
[![Nuget Downloads](https://img.shields.io/nuget/dt/AggregatedGenericResultMessage.Web.svg?style=flat&logo=nuget)](https://www.nuget.org/packages/AggregatedGenericResultMessage.Web)
55

6-
The important thing about this repository is to offer the possibility to manage and organize your result/response from infrastructure to user/controller, as the principal repository around witch are built all extensions is [`AggregatedGenericResultMessage`](https://www.nuget.org/packages/AggregatedGenericResultMessage).
6+
The important thing about this repository is to offer the possibility to manage and organize your result/response from infrastructure to user/controller, as the principal repository around which are built all extensions is [`AggregatedGenericResultMessage`](https://www.nuget.org/packages/AggregatedGenericResultMessage).
77

88
**In case you wish to use it in your project, u can install the package from <a href="https://www.nuget.org/packages/AggregatedGenericResultMessage.Web" target="_blank">nuget.org</a>** or specify what version you want:
99

docs/CHANGELOG.md

Lines changed: 2 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,2 @@
1-
### **v.1.0.1.1702**
2-
-> Was fixed runtime error on using lib in project
3-
4-
### **v.1.0.1.1731**
5-
-> Changed the readme file, by adding install from NuGet.
6-
7-
### **v.1.0.2.0946**
8-
-> Clean project and organized for more readable code.<br />
9-
-> Removed local string extension class.<br />
10-
-> Added missing comments.
11-
12-
### **v.1.0.3.1836**
13-
-> Was added a new message result `Exception`.<br />
14-
-> Was added a new methods for 'Exception': `AddException`, `HasAnyExceptions`.<br />
15-
-> Was added a new method for 'Error result': `HasAnyErrorsOrExceptions`.<br />
16-
-> Was adjusted the method for 'Error result': `GetFirstError` return non null value.<br />
17-
-> Was added a new `operators` for: catch `Exception`, bool or T response on return from methods.<br />
18-
-> Was adjusted the methods from `ResultOfT` for `JoinResults` and added new method `JoinErrorResults`.<br />
19-
-> Was update libs, cleaned code, optimized and reorganized.<br />
20-
21-
### **v.1.0.3.1903**
22-
-> Libs upgrade and retested some cases.<br />
23-
24-
### **v.1.0.4.1314**
25-
-> Added support for SOAP services result. Cast from `Result` or `Result<T>` to acceptable result for SOAP (to XML result) in particular use in .net framework.<br />
26-
-> Was added an extension method for SOAP result `ToSoapResult`.<br />
27-
-> Was added support for .net framework 4.6.1 - 4.8.<br />
28-
29-
### **v.1.0.5.1813**
30-
-> Was added support for .net framework 4.5.<br />
31-
32-
### **v.1.0.6.1706**
33-
-> Was added new custom responses.<br />
34-
-> Was updated libs.<br />
35-
36-
### **v.1.1.0.0**
37-
-> Removed from solution reference `DomainCommonExtensions` to reduce package size and allow more dynamic package use without adding unnecessary components.<br/>
38-
-> Added reference to `CodeSource` to set the code reference of the methods used from `DomainCommonExtensions`.<br/>
39-
-> In the `MessageModel` was added a new property named `LogTraceId` as a unique id for the message.<br/>
40-
-> Added more user-friendly result configuration with methods: `WithMessage`, `WithKeyCode`, `WithCodeMessage`, `WithError`, `WithErrors`.<br/>
41-
-> Added new model `ResultError` used in `WithError` and `WithErrors`.<br/>
42-
-> Cleaned up code and reorganization on project structure by extracting functionalities to separate classes.<br/>
43-
44-
### **1.1.1.2048**
45-
-> Added extension methods(`ActionOnSuccess`, `ActionOnFailure`, `ActionOn`, `ExecuteAction`) which allow executing custom actions on specific cases or in any case you want or need.
1+
### **v.1.0.1.0546**
2+
-> Update reference package version.

src/AggregatedGenericResultMessage.Web/AggregatedGenericResultMessage.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<Compile Include="..\shared\GeneralAssemblyInfo.cs" Link="Properties\GeneralAssemblyInfo.cs" />
4141
</ItemGroup>
4242
<ItemGroup>
43-
<PackageReference Include="AggregatedGenericResultMessage" Version="1.2.0" />
43+
<PackageReference Include="AggregatedGenericResultMessage" Version="1.2.1" />
4444
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
4545
</ItemGroup>
4646

src/AggregatedGenericResultMessage.Web/ResultBaseApiController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#region U S A G E S
1818

1919
using AggregatedGenericResultMessage.Abstractions;
20-
using AggregatedGenericResultMessage.Extensions.Common;
20+
using AggregatedGenericResultMessage.Web.Extensions.Internal;
2121
using Microsoft.AspNetCore.Mvc;
2222

2323
// ReSharper disable RedundantCast

src/shared/GeneralAssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@
4343

4444
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.MainAssembly)]
4545

46-
[assembly: AssemblyVersion("1.0.0.0")]
47-
[assembly: AssemblyFileVersion("1.0.0.0")]
48-
[assembly: AssemblyInformationalVersion("1.0.0.x")]
46+
[assembly: AssemblyVersion("1.0.1.0546")]
47+
[assembly: AssemblyFileVersion("1.0.1.0546")]
48+
[assembly: AssemblyInformationalVersion("1.0.1.x")]

0 commit comments

Comments
 (0)