File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 15
15
runs-on : windows-latest
16
16
strategy :
17
17
matrix :
18
+ dotnetversion : ['net8.0', 'net9.0']
18
19
projname : [ 'EIV_Core', 'EIV_Modules' ]
19
20
steps :
20
21
- name : Checkout
@@ -29,13 +30,13 @@ jobs:
29
30
- name : Setup .NET
30
31
uses : actions/setup-dotnet@v4
31
32
with :
32
- dotnet-version : ' 8 .0.x'
33
+ dotnet-version : ' 9 .0.x'
33
34
34
35
- name : Add eiv_nuget to nuget souce
35
36
run : dotnet nuget add source --name eiv_nuget $env:GITHUB_WORKSPACE/eiv_nuget
36
37
37
38
- name : Publish
38
- run : dotnet publish ${{ matrix.projname }}/${{ matrix.projname }}.csproj -c Release -o Out
39
+ run : dotnet publish ${{ matrix.projname }}/${{ matrix.projname }}.csproj -c Release -f ${{ matrix.dotnetversion }} - o Out
39
40
40
41
- name : Upload artifact
41
42
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net8.0</ TargetFramework >
4
+ <TargetFrameworks >net8.0;net9.0</ TargetFrameworks >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
- <PackageReference Include =" EIV_Common" Version =" 0.0.2 " />
10
+ <PackageReference Include =" EIV_Common" Version =" 0.0.3 " />
11
11
<PackageReference Include =" EIV_DataPack" Version =" 1.1.0" />
12
12
<PackageReference Include =" EIV_JsonLib" Version =" 2.0.5.2" />
13
13
<PackageReference Include =" ini-parser-netstandard" Version =" 2.5.2" />
You can’t perform that action at this time.
0 commit comments