Skip to content

Commit 1456993

Browse files
authored
update common (so remove godot) update build
1 parent 10e8173 commit 1456993

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build_all.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
runs-on: windows-latest
1616
strategy:
1717
matrix:
18+
dotnetversion: ['net8.0', 'net9.0']
1819
projname: [ 'EIV_Core', 'EIV_Modules' ]
1920
steps:
2021
- name: Checkout
@@ -29,13 +30,13 @@ jobs:
2930
- name: Setup .NET
3031
uses: actions/setup-dotnet@v4
3132
with:
32-
dotnet-version: '8.0.x'
33+
dotnet-version: '9.0.x'
3334

3435
- name: Add eiv_nuget to nuget souce
3536
run: dotnet nuget add source --name eiv_nuget $env:GITHUB_WORKSPACE/eiv_nuget
3637

3738
- 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
3940

4041
- name: Upload artifact
4142
uses: actions/upload-artifact@v4

EIV_Core/EIV_Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="EIV_Common" Version="0.0.2" />
10+
<PackageReference Include="EIV_Common" Version="0.0.3" />
1111
<PackageReference Include="EIV_DataPack" Version="1.1.0" />
1212
<PackageReference Include="EIV_JsonLib" Version="2.0.5.2" />
1313
<PackageReference Include="ini-parser-netstandard" Version="2.5.2" />

0 commit comments

Comments
 (0)