Skip to content

Commit 5b2b564

Browse files
author
Haik
committed
naming fix
1 parent b32b22a commit 5b2b564

File tree

9 files changed

+20
-33
lines changed

9 files changed

+20
-33
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Deploy NuGet Package
22

33
env:
4-
PROJECT_PATH: './src/PandaNuGet/PandaNuGet.csproj'
4+
PROJECT_PATH: './src/Communicator/Communicator.csproj'
55
OUTPUT_DIR: 'nupkgs'
66
NUGET_SOURCE: 'https://api.nuget.org/v3/index.json'
77
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}

PandaNuGet.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PandaNuGet", "src\PandaNuGet\PandaNuGet.csproj", "{25001943-A870-4E17-A9B9-0D190CEC819B}"
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Communicator", "src\Communicator\Communicator.csproj", "{25001943-A870-4E17-A9B9-0D190CEC819B}"
44
EndProject
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PandaNuGet.Tests", "src\PandaNuGet.Tests\PandaNuGet.Tests.csproj", "{0305E58F-1C47-454C-B10B-A223F2561A85}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Communicator.Tests", "src\Communicator.Tests\Communicator.Tests.csproj", "{0305E58F-1C47-454C-B10B-A223F2561A85}"
66
EndProject
77
Global
88
GlobalSection(SolutionConfigurationPlatforms) = preSolution

Readme.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Pandatech.***
1+
# Pandatech.Communicator
22

33

44
## Introduction
@@ -17,10 +17,4 @@
1717

1818
## License
1919

20-
Pandatech.*** is licensed under the MIT License.
21-
22-
[![GitHub stars](https://img.shields.io/github/stars/pandatech/Public-API-Documentations.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/pandatech/Public-API-Documentations/stargazers/)
23-
24-
[![GitHub forks](https://img.shields.io/github/forks/pandatech/Public-API-Documentations.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/pandatech/Public-API-Documentations/network/)
25-
26-
[![GitHub issues](https://img.shields.io/github/issues/pandatech/Public-API-Documentations.svg)](https://GitHub.com/pandatech/Public-API-Documentations/issues/)
20+
Pandatech.Communicator is licensed under the MIT License.

src/PandaNuGet.Tests/PandaNuGet.Tests.csproj renamed to src/Communicator.Tests/Communicator.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
<ItemGroup>
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
14-
<PackageReference Include="xunit" Version="2.6.2" />
15-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
14+
<PackageReference Include="xunit" Version="2.6.6" />
15+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
<PrivateAssets>all</PrivateAssets>
1818
</PackageReference>
@@ -23,7 +23,7 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<ProjectReference Include="..\PandaNuGet\PandaNuGet.csproj" />
26+
<ProjectReference Include="..\Communicator\Communicator.csproj" />
2727
</ItemGroup>
2828

2929
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace PandaNuGet.Tests;
1+
namespace Communicator.Tests;
22

33
public class UnitTest1
44
{

src/Communicator/Class1.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
namespace Communicator;
2+
3+
public class Class1
4+
{
5+
}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<Authors>Pandatech</Authors>
1010
<Copyright>MIT</Copyright>
1111
<Version>1.0.0</Version>
12-
<PackageId>Pandatech.SET_YOUR_TITLE</PackageId>
13-
<Title>SET_YOUR_TITLE</Title>
14-
<PackageTags>Pandatech, library, SET_CUSTOM_TAGS</PackageTags>
15-
<Description>SET_YOUR_DESCRIPTION.</Description>
16-
<RepositoryUrl>SET_YOUR_GITHUB_REPO_URL</RepositoryUrl>
12+
<PackageId>Pandatech.Communicator</PackageId>
13+
<Title>SMS and Email Communication helper</Title>
14+
<PackageTags>Pandatech, library, Sms, Email, Messages</PackageTags>
15+
<Description>A versatile .NET library for integrating SMS and email functionalities. Supports multiple SMS providers and easy configuration through appsettings.json or web builders, ideal for efficient and reliable messaging in any application..</Description>
16+
<RepositoryUrl>https://github.com/PandaTechAM/be-lib-communicator</RepositoryUrl>
1717
<PackageReleaseNotes>InitialCommit</PackageReleaseNotes>
1818
</PropertyGroup>
1919

@@ -23,7 +23,7 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.0" />
26+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.1"/>
2727
</ItemGroup>
2828

2929
</Project>

src/PandaNuGet/Class1.cs

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)