Skip to content

Commit

Permalink
target framework update
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenwezel committed Nov 4, 2024
1 parent f35d706 commit a1d0c7f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/BuildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 8.0.x

- name: Dir Listing (Win)
if: startsWith(matrix.os, 'windows')
Expand All @@ -72,7 +72,7 @@ jobs:
run: dotnet build --configuration=${{env.BUILD_CONFIGURATION}} --no-restore

- name: Run Unit Tests
run: dotnet test --framework net5.0 --results-directory test-results --logger junit --configuration=${{env.BUILD_CONFIGURATION}} --no-restore
run: dotnet test --framework net8.0 --results-directory test-results --logger junit --configuration=${{env.BUILD_CONFIGURATION}} --no-restore

- name: Dir Listing (Win) test-results
if: startsWith(matrix.os, 'windows')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PublishRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 8.0.x

- name: Install dependencies
run: dotnet restore
Expand Down
8 changes: 4 additions & 4 deletions CompuMaster.Net.Smtp/CompuMaster.Net.Smtp.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<PropertyGroup>
<RootNamespace>CompuMaster.Net.Smtp</RootNamespace>
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net5.0;net48;net45</TargetFrameworks>
<Version>2021.08.27.100</Version>
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net6.0;net48;net45</TargetFrameworks>
<Version>2024.11.04.100</Version>
<Authors>Jochen Wezel</Authors>
<Company>CompuMaster GmbH</Company>
<Copyright>2010-2021 CompuMaster GmbH</Copyright>
<Copyright>2010-2024 CompuMaster GmbH</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/CompuMasterGmbH/CompuMaster.Net.Smtp</PackageProjectUrl>
<PackageIcon>logo_64x64.png</PackageIcon>
Expand Down Expand Up @@ -69,7 +69,7 @@
<Version>4.3.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="System.Data.Common">
<Version>4.3.0</Version>
</PackageReference>
Expand Down
6 changes: 3 additions & 3 deletions Tests/Tests.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

<PropertyGroup>
<RootNamespace>Smtp.Tests</RootNamespace>
<TargetFrameworks>netcoreapp3.1;net5.0;net48;net45</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0;net48;net45</TargetFrameworks>
<AssemblyName>CompuMaster.Net.Smtp.Tests</AssemblyName>
<PackageId>CompuMaster.Net.Smtp.Tests</PackageId>
<Company>CompuMaster GmbH</Company>
<Authors>Jochen Wezel</Authors>
<IsTestProject>true</IsTestProject>
<Version>2021.08.26.100</Version>
<Copyright>2001-2021 CompuMaster GmbH</Copyright>
<Version>2024.11.04.100</Version>
<Copyright>2001-2024 CompuMaster GmbH</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Configurations>Debug;Release;CI_CD</Configurations>
</PropertyGroup>
Expand Down

0 comments on commit a1d0c7f

Please sign in to comment.