Skip to content

Commit

Permalink
fix: bumbed and added .net8
Browse files Browse the repository at this point in the history
  • Loading branch information
pksorensen committed Apr 25, 2024
1 parent 0190dd4 commit ae1b9f1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@


on:
pull_request:
types: [ assigned, opened, synchronize, reopened ]
Expand All @@ -16,7 +16,7 @@ jobs:

- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'

- name: Cleaning
run: dotnet clean
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:

- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'

- uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '20'

- name: Add plugin for conventional commits
run: npm install conventional-changelog-conventionalcommits
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Import Condition="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../')) != ''" Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
<PropertyGroup>
<LangVersion>10.0</LangVersion>
<EAVFrameworkVersion Condition="'$(EAVFrameworkVersion)' == ''">4.1.1</EAVFrameworkVersion>
<EAVFrameworkVersion Condition="'$(EAVFrameworkVersion)' == ''">4.2.6</EAVFrameworkVersion>
<UseEAVFromNuget Condition="'$(UseEAVFromNuget)' == ''">true</UseEAVFromNuget>
<LocalEAVFrameworkPath Condition="'$(LocalEAVFrameworkPath)' == ''">$(MSBuildThisFileDirectory)/external/EAVFramework</LocalEAVFrameworkPath>
<LocalExternalpath Condition="'$(LocalExternalpath)' == ''">$(MSBuildThisFileDirectory)/external</LocalExternalpath>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0;net8.0</TargetFrameworks>

<Title>EAVFW.Extensions.Documents</Title>
<Authors>Poul Kjeldager</Authors>
Expand All @@ -10,9 +10,7 @@
<RepositoryUrl>https://github.com/EAVFW/EAVFW.Extensions.Documents</RepositoryUrl>
<RemoteEAVFramework>true</RemoteEAVFramework>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="\" />
<None Include="manifest.extensions.json" Pack="true" PackagePath="eavfw/manifest/" />
Expand Down

0 comments on commit ae1b9f1

Please sign in to comment.