File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
src/EAVFW.Extensions.CommandLine Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 14
14
- name : Checkout code base
15
15
uses : actions/checkout@v2
16
16
17
- - uses : actions/setup-dotnet@v1
17
+ - uses : actions/setup-dotnet@v3
18
18
with :
19
- dotnet-version : ' 6 .0.x'
19
+ dotnet-version : ' 8 .0.x'
20
20
21
21
- name : Cleaning
22
22
run : dotnet clean
Original file line number Diff line number Diff line change 14
14
- name : Checkout repo
15
15
uses : actions/checkout@v2
16
16
17
- - uses : actions/setup-dotnet@v1
17
+ - uses : actions/setup-dotnet@v3
18
18
with :
19
- dotnet-version : ' 6 .0.x'
19
+ dotnet-version : ' 8 .0.x'
20
20
21
21
- uses : actions/setup-node@v2
22
22
with :
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >netcoreapp3.1;net6.0</TargetFrameworks >
4
+ <TargetFrameworks >netcoreapp3.1;net6.0;net8.0 </TargetFrameworks >
5
5
<Title >EAVFW.Extensions.CommandLine</Title >
6
6
<Authors >Poul Kjeldager</Authors >
7
7
<Description >System.CommandLine Extensions for building better CLIs</Description >
27
27
<PackageReference Include =" Microsoft.Extensions.Hosting.Abstractions" Version =" 6.0.0" />
28
28
<PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions" Version =" 6.0.0" />
29
29
</ItemGroup >
30
+
31
+ <ItemGroup Condition =" '$(TargetFramework)'=='net8.0'" >
32
+ <PackageReference Include =" Microsoft.Extensions.Hosting.Abstractions" Version =" 8.0.0" />
33
+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions" Version =" 8.0.0" />
34
+ </ItemGroup >
30
35
</Project >
You can’t perform that action at this time.
0 commit comments