Skip to content

Commit 8c50143

Browse files
committed
Code Chavez
1 parent 38f5320 commit 8c50143

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
uses: actions/setup-dotnet@v4
1818

1919
- name: Restore dependencies
20-
run: dotnet restore **/Teslacode.Common/Teslacode.Common.csproj --configfile nuget.config --no-cache
20+
run: dotnet restore **/Teslacode.Common/CodeChavez.Common.csproj --configfile nuget.config --no-cache
2121

2222
- name: Build project
23-
run: dotnet build **/Teslacode.Common/Teslacode.Common.csproj --configuration Release
23+
run: dotnet build **/Teslacode.Common/CodeChavez.Common.csproj --configuration Release
2424

2525
- name: Package Common
26-
run: dotnet pack **/Teslacode.Common/Teslacode.Common.csproj --configuration Release --no-build --output ./artifacts
26+
run: dotnet pack **/Teslacode.Common/CodeChavez.Common.csproj --configuration Release --no-build --output ./artifacts
2727

2828
- name: Push NuGet package
2929
run: dotnet nuget push "./artifacts/*.nupkg" --api-key $NUGET_AUTH_TOKEN --source https://api.nuget.org/v3/index.json

Teslacode.Common.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.14.36301.6
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Teslacode.Common", "src\Teslacode.Common\Teslacode.Common.csproj", "{37E04510-78FE-4B84-96AE-AAC8236D3D44}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeChavez.Common", "src\Teslacode.Common\CodeChavez.Common.csproj", "{37E04510-78FE-4B84-96AE-AAC8236D3D44}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution

src/Teslacode.Common/ApplicationSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Microsoft.Extensions.Configuration;
22

3-
namespace Teslacode.Common;
3+
namespace CodeChavez.Common;
44

55
public static class ApplicationSettings
66
{

src/Teslacode.Common/Teslacode.Common.csproj renamed to src/Teslacode.Common/CodeChavez.Common.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
8-
<PackageId>codechavez.common</PackageId>
9-
<Title> codechavez Common Library</Title>
8+
<PackageId>CodeChavez.Common</PackageId>
9+
<Title> CodeChavez Common Library</Title>
1010
<Authors>Victor A Chavez</Authors>
11-
<Product>codechavez.Common</Product>
11+
<Product>CodeChavez.Common</Product>
1212
<Version>9.0.0</Version>
1313
<Copyright>2020-2025</Copyright>
1414
<Description>Has some useful extension and utilities that allow for every day development</Description>

src/Teslacode.Common/Extensions/CastingExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Teslacode.Common.Extensions;
1+
namespace CodeChavez.Common.Extensions;
22

33
public static class CastingExtensions
44
{

src/Teslacode.Common/Extensions/CheckExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Teslacode.Common.Extensions;
1+
namespace CodeChavez.Common.Extensions;
22

33
public static class CheckExtensions
44
{

src/Teslacode.Common/Extensions/EnumExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.ComponentModel;
22

3-
namespace Teslacode.Common.Extensions;
3+
namespace CodeChavez.Common.Extensions;
44

55
public static class EnumExtensions
66
{

src/Teslacode.Common/Result.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Teslacode.Common;
1+
namespace CodeChavez.Common;
22

33
public class Result<T>
44
{

0 commit comments

Comments
 (0)