Skip to content

Commit

Permalink
upgrade to dotnet 7
Browse files Browse the repository at this point in the history
  • Loading branch information
agabor committed Jan 23, 2023
1 parent 9562533 commit b562ad2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
working-directory: ./SzamlazzHuTest
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ var response = await api.CreateInvoice(request);
//Optionally write invoice PDF to the disk
File.WriteAllBytes("invoice.pdf", response.InvoicePdf);
```

## Pull Requests are Welcome!

If you are missing something please open an issue, or send a pull request! Every contribution is welcome :)
4 changes: 2 additions & 2 deletions SzamlazzHuSDK/SzamlazzHuSDK.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>szamlazz-hu-sdk</PackageId>
<Version>1.3.4</Version>
<Version>1.4.0</Version>
<Authors>Gabor Angyal</Authors>
<Description>SDK for the Számlázz.hu billing software</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand All @@ -13,7 +13,7 @@
<PackageTags>Billing;Számlázz.hu</PackageTags>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion SzamlazzHuTest/SzamlazzHuTest.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down

0 comments on commit b562ad2

Please sign in to comment.