Skip to content

Commit

Permalink
Update to support .NET 7
Browse files Browse the repository at this point in the history
  • Loading branch information
juninhodigital committed Jan 21, 2024
1 parent 8f4e336 commit 4ec37fb
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 18 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,19 @@ env:

jobs:
deploy:
name: 'Deploy'
name: 'Deploy'
runs-on: 'windows-latest'
steps:

- name: 'Checkout'
uses: actions/checkout@master
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: 'Install dotnet'
uses: actions/setup-dotnet@v1
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-version: 7.0.x

- name: 'Restore packages'
run: dotnet restore ${{ env.PROJECT_PATH }}
Expand Down
5 changes: 5 additions & 0 deletions Framework.Entity.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{
.github\workflows\nuget.yml = .github\workflows\nuget.yml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{099B4DEA-030D-4C73-8EDC-8688A4E9D465}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
13 changes: 8 additions & 5 deletions Framework.Entity/Framework.Entity.csproj
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<Authors>Jose Carlos de Jesus Junior</Authors>
<Company>Jose Carlos de Jesus Junior</Company>
<Description>It provides a base class called Business Entities Structure (Base Model) used to map automatticaly the properties without using reflection from the database/datasource</Description>
<Copyright>Copyright 2022</Copyright>
<Version>1.0.12</Version>
<Version>1.0.13</Version>
<PackageId>Framework.Services.Entity</PackageId>
<PackageProjectUrl>https://github.com/juninhodigital/Framework.Entity</PackageProjectUrl>
<PackageIconUrl>https://github.com/juninhodigital/Framework.Core/blob/master/Icons/FS_IconSmall.png?raw=true</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags>Base Model, Mapping Class, ORM</PackageTags>
<RepositoryType>Github</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/juninhodigital/Framework.Entity</RepositoryUrl>
<NeutralLanguage>English (United States)</NeutralLanguage>
<PackageReadmeFile>README.md</PackageReadmeFile>

</PropertyGroup>

Expand All @@ -31,8 +32,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Framework.Services.Core" Version="1.0.22" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Framework.Services.Core" Version="1.0.25" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<None Include="icon.png" Pack="true" Visible="false" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>
27 changes: 27 additions & 0 deletions Framework.Entity/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Framework.Entity
#### Framework Data base library
It is a *.NET Core/Standard* library that provides provides a base class called Business Entities Structure (Base Model) used to map automatticaly the properties without using reflection from the database/datasource

Technologies
- [x] .NET Core and .NET Standard

### TO DO
- [ ] **Add Unit testing project**
- [ ] **Create Unit tests**

### Contact Me
| E-mail | Linkedin |
| ------------------------ | ------------------------------------------- |
| `juninho_web@hotmail.com`| `https://www.linkedin.com/in/juninhodigital`|

## Contribute
The best way to contribute is by **putting in some good words** about the library and help me out by:

- Fork it
- Pull Request
- Comment it
- Star it
- Share it

I would really love your help to make it better and usefull to the community.
*Need more info?* juninho_web@hotmail.com
Binary file added Framework.Entity/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Framework.Entity
#### Framework Data base library
It is a .NET Core/Standard library that provides provides a base class called Business Entities Structure (Base Model) used to map automatticaly the properties without using reflection from the database/datasource
It is a *.NET Core/Standard* library that provides provides a base class called Business Entities Structure (Base Model) used to map automatticaly the properties without using reflection from the database/datasource

Technologies
- [x] .NET Core and .NET Standard
Expand All @@ -9,11 +9,10 @@ Technologies
- [ ] **Add Unit testing project**
- [ ] **Create Unit tests**

## Download

Full Version | NuGet | Package Manager
:------------ | :-------------|:----------------
Framework.Entity | <a href="https://www.nuget.org/packages/Framework.Services.Entity/"><img src="https://github.com/juninhodigital/Framework.Core/blob/master/nuget.svg"/></a> | PM > Install-Package Framework.Entity
### Contact Me
| E-mail | Linkedin |
| ------------------------ | ------------------------------------------- |
| `juninho_web@hotmail.com`| `https://www.linkedin.com/in/juninhodigital`|

## Contribute
The best way to contribute is by **putting in some good words** about the library and help me out by:
Expand Down

0 comments on commit 4ec37fb

Please sign in to comment.