Skip to content

Commit 0c893d1

Browse files
Code improvements
1 parent 46397be commit 0c893d1

4 files changed

Lines changed: 57 additions & 1 deletion

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 OneBit Software
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,37 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

9+
<ItemGroup>
10+
<None Include="..\..\README.md">
11+
<Pack>True</Pack>
12+
<PackagePath>\</PackagePath>
13+
</None>
14+
</ItemGroup>
15+
916
<ItemGroup>
1017
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.1" />
1118
</ItemGroup>
1219

20+
<PropertyGroup>
21+
<PackageId>OneBitSoftware.Utilities.OperationResult</PackageId>
22+
<RepositoryType>git</RepositoryType>
23+
<RepositoryUrl>https://github.com/OneBitSoftware/OperationResult</RepositoryUrl>
24+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
25+
<Company>OneBit Software</Company>
26+
<Product>OneBit Software utilities - OperationResult</Product>
27+
<Description>A reusable class for capturing multiple errors and success tracking when performing all kinds of code operations.</Description>
28+
<Copyright>OneBit Software 2022</Copyright>
29+
<PackageProjectUrl>https://github.com/OneBitSoftware/OperationResult</PackageProjectUrl>
30+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
31+
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
32+
<PackageReadmeFile>README.md</PackageReadmeFile>
33+
<PackageTags>OneBitSoftware; OperationResult;</PackageTags>
34+
<Version>1.0.1</Version>
35+
</PropertyGroup>
36+
1337
</Project>

src/OneBitSoftware.Utilities.OperationResult/OperationResult.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,15 @@ private void AppendError(Error error, LogLevel? logLevel)
210210
/// </summary>
211211
public class OperationResult<TResult> : OperationResult
212212
{
213+
214+
/// <summary>
215+
/// Initializes a new instance of the <see cref="OperationResult"/> class.
216+
/// </summary>
217+
/// <remarks>If the operation is a get operation, an empty result must return a truthy Success value.</remarks>
218+
public OperationResult()
219+
{
220+
}
221+
213222
/// <summary>
214223
/// Initializes a new instance of the <see cref="OperationResult"/> class.
215224
/// </summary>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# OperationResult
2+
A reusable class for capturing multiple errors and success tracking when performing all kinds of code operations.

0 commit comments

Comments
 (0)