File tree 6 files changed +11
-10
lines changed
6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 28
28
- name : Install .NET Core
29
29
uses : actions/setup-dotnet@v4
30
30
with :
31
- dotnet-version : 8 .0.x
31
+ dotnet-version : 9 .0.x
32
32
33
33
- name : Setup MSBuild.exe
34
34
uses : microsoft/setup-msbuild@v2
54
54
run : |
55
55
$NuGetPackageFolder = Join-Path -Path $env:USERPROFILE -ChildPath ".nuget\packages\pkhex.core"
56
56
$LatestVersion = (Get-ChildItem $NuGetPackageFolder | Sort-Object -Property LastWriteTime -Descending)[0].Name
57
- $PkhexCoreDllSource = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "PKHeX/PKHeX.Core/bin/Release/net8.0 /PKHeX.Core.dll"
58
- $PkhexCoreDllDest = Join-Path -Path $NuGetPackageFolder -ChildPath "$LatestVersion/lib/net8 .0/PKHeX.Core.dll"
59
- Copy-Item -Path $PkhexCoreDllSource -Destination $PkhexCoreDllDest
57
+ $PkhexCoreDllSource = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "PKHeX/PKHeX.Core/bin/Release/net9.0-windows /PKHeX.Core.dll"
58
+ $PkhexCoreDllDest = Join-Path -Path $NuGetPackageFolder -ChildPath "$LatestVersion/lib/net9 .0/PKHeX.Core.dll"
59
+ Copy-Item -Path $PkhexCoreDllSource -Destination $PkhexCoreDllDest
60
60
61
61
- name : Execute unit tests
62
62
run : dotnet test
75
75
name : HomeLive.Plugins
76
76
path : |
77
77
HomeLive.Plugins/bin
78
- !HomeLive.Plugins/bin/Release/net8 .0-windows7.0/PKHeX.Core.dll
78
+ !HomeLive.Plugins/bin/Release/net9 .0-windows7.0/PKHeX.Core.dll
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
+ <TargetFramework >net9 .0</TargetFramework >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
7
<ApplicationIcon >Resources\icon.ico</ApplicationIcon >
44
44
</ItemGroup >
45
45
46
46
<ItemGroup >
47
- <PackageReference Include =" PKHeX.Core" Version =" 24.11.11 " />
47
+ <PackageReference Include =" PKHeX.Core" Version =" 24.11.12 " />
48
48
</ItemGroup >
49
49
50
50
<ItemGroup >
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ public override string GetSummary()
32
32
33
33
public override void SoftStop ( ) => Config . Pause ( ) ;
34
34
public override Task HardStop ( ) => Task . CompletedTask ;
35
+ public override Task RebootAndStop ( CancellationToken token ) => Task . CompletedTask ;
35
36
36
37
public override async Task MainLoop ( CancellationToken token )
37
38
{
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
+ <TargetFramework >net9 .0</TargetFramework >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
7
<Title >Home Live Device Executor</Title >
21
21
</PropertyGroup >
22
22
23
23
<ItemGroup >
24
- <PackageReference Include =" NLog" Version =" 5.1 .4" />
24
+ <PackageReference Include =" NLog" Version =" 5.3 .4" />
25
25
</ItemGroup >
26
26
27
27
<ItemGroup >
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-windows7.0</TargetFramework >
4
+ <TargetFramework >net9 .0-windows7.0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
<UseWindowsForms >true</UseWindowsForms >
7
7
<ImplicitUsings >enable</ImplicitUsings >
You can’t perform that action at this time.
0 commit comments