Skip to content

Commit 404d203

Browse files
committed
going 10
1 parent 867714c commit 404d203

5 files changed

Lines changed: 20 additions & 16 deletions

File tree

.github/workflows/teslacode.common.nuget.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ jobs:
1313
- name: Checkout repository
1414
uses: actions/checkout@v4
1515

16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v3
18+
with:
19+
dotnet-version: '10.x'
20+
1621
- name: Setup .NET (use global.json)
1722
uses: actions/setup-dotnet@v4
1823

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [2020-2025] [Victor A Chavez]
189+
Copyright [2020-2026] [Victor A Chavez]
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.305",
3+
"version": "10.0.103",
44
"rollForward": "latestFeature"
55
}
66
}
Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<PackageId>CodeChavez.Common</PackageId>
99
<Title> CodeChavez Common Library</Title>
1010
<Authors>Victor A Chavez</Authors>
1111
<Product>CodeChavez.Common</Product>
12-
<Version>9.0.2</Version>
13-
<Copyright>2020-2025 Victor A Chavez</Copyright>
12+
<Version>10.0.0</Version>
13+
<Copyright>2020-2026 Victor A Chavez</Copyright>
1414
<Description>Has some useful extension and utilities that allow for every day development</Description>
1515
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1616
<PackageReadmeFile>README.md</PackageReadmeFile>
@@ -26,16 +26,15 @@
2626
</ItemGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="AutoMapper" Version="15.0.1" />
30-
<PackageReference Include="CodeChavez.M3diator" Version="0.1.4" />
31-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.9" />
32-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.9" />
33-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.9" />
34-
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="9.0.9" />
35-
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="9.0.9" />
36-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.9" />
37-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.9" />
38-
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.9" />
29+
<PackageReference Include="CodeChavez.M3diator" Version="1.0.1" />
30+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.3" />
31+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.3" />
32+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.3" />
33+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="10.0.3" />
34+
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="10.0.3" />
35+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.3" />
36+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.3" />
37+
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.3" />
3938
</ItemGroup>
4039

4140
</Project>

src/Teslacode.Common/Result.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public class Result<T>
44
{
5-
public virtual T Value { get; private set; }
5+
public virtual T? Value { get; private set; }
66
public virtual bool IsSuccess { get; private set; } = true;
77
public virtual string ErrorMessage { get; private set; } = string.Empty;
88

0 commit comments

Comments
 (0)