Skip to content

Commit 841afa7

Browse files
author
Haik
committed
Initial commit
1 parent a859baa commit 841afa7

File tree

9 files changed

+32
-54
lines changed

9 files changed

+32
-54
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/EFCore.PostgresExtensions/EFCore.PostgresExtensions.csproj'
55
OUTPUT_DIR: 'nupkgs'
66
NUGET_SOURCE: 'https://api.nuget.org/v3/index.json'
77
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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}") = "EFCore.PostgresExtensions", "src\EFCore.PostgresExtensions\EFCore.PostgresExtensions.csproj", "{25001943-A870-4E17-A9B9-0D190CEC819B}"
44
EndProject
55
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PandaNuGet.Tests", "test\PandaNuGet.Tests\PandaNuGet.Tests.csproj", "{0305E58F-1C47-454C-B10B-A223F2561A85}"
66
EndProject

Readme.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Pandatech.***
1+
# Pandatech.EFCore.PostgresExtensions
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.EFCore.PostgresExtensions is licensed under the MIT 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": "8.0.300",
3+
"version": "8.0.200",
44
"rollForward": "latestMajor"
55
}
66
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<PackageIcon>pandatech.png</PackageIcon>
8+
<PackageReadmeFile>Readme.md</PackageReadmeFile>
9+
<Authors>Pandatech</Authors>
10+
<Copyright>MIT</Copyright>
11+
<Version>1.0.0</Version>
12+
<PackageId>Pandatech.EFCore.PostgresExtensions</PackageId>
13+
<Title>Pandatech.EFCore.PostgresExtensions</Title>
14+
<PackageTags>Pandatech, library, EntityFrameworkCore, PostgreSQL, For Update, Lock, LockingSyntax</PackageTags>
15+
<Description>The Pandatech.EFCore.PostgresExtensions library enriches Entity Framework Core applications with advanced PostgreSQL functionalities, starting with the ForUpdate locking syntax. Designed for seamless integration, this NuGet package aims to enhance the efficiency and capabilities of EF Core models when working with PostgreSQL, with the potential for further PostgreSQL-specific extensions.</Description>
16+
<RepositoryUrl>https://github.com/PandaTechAM/be-lib-efcore-postgres-extensions</RepositoryUrl>
17+
<PackageReleaseNotes>InitialCommit</PackageReleaseNotes>
18+
</PropertyGroup>
19+
20+
<ItemGroup>
21+
<None Include="..\..\pandatech.png" Pack="true" PackagePath="\"/>
22+
<None Include="..\..\Readme.md" Pack="true" PackagePath="\"/>
23+
</ItemGroup>
24+
25+
</Project>

src/PandaNuGet/Class1.cs

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

src/PandaNuGet/PandaNuGet.csproj

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

test/PandaNuGet.Demo/PandaNuGet.Demo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<ProjectReference Include="..\..\src\PandaNuGet\PandaNuGet.csproj" />
16+
<ProjectReference Include="..\..\src\EFCore.PostgresExtensions\EFCore.PostgresExtensions.csproj" />
1717
</ItemGroup>
1818

1919
</Project>

test/PandaNuGet.Tests/PandaNuGet.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</ItemGroup>
2424

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

2929
</Project>

0 commit comments

Comments
 (0)