diff --git a/project/Aki.Build/Aki.Build.csproj b/project/Aki.Build/Aki.Build.csproj index 0aeff48..f78b6e4 100644 --- a/project/Aki.Build/Aki.Build.csproj +++ b/project/Aki.Build/Aki.Build.csproj @@ -1,12 +1,12 @@  - net6.0 + net8.0 win-x64 - + diff --git a/project/Aki.ByteBanger/Aki.ByteBanger.csproj b/project/Aki.ByteBanger/Aki.ByteBanger.csproj index fff7812..ae2821e 100644 --- a/project/Aki.ByteBanger/Aki.ByteBanger.csproj +++ b/project/Aki.ByteBanger/Aki.ByteBanger.csproj @@ -1,7 +1,7 @@  - net6.0 + net8.0 diff --git a/project/Aki.Launcher.Base/Aki.Launcher.Base.csproj b/project/Aki.Launcher.Base/Aki.Launcher.Base.csproj index 7f8cf16..3f9a5fc 100644 --- a/project/Aki.Launcher.Base/Aki.Launcher.Base.csproj +++ b/project/Aki.Launcher.Base/Aki.Launcher.Base.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 Aki.Launch diff --git a/project/Aki.Launcher/Aki.Launcher.csproj b/project/Aki.Launcher/Aki.Launcher.csproj index f15c8bd..357388d 100644 --- a/project/Aki.Launcher/Aki.Launcher.csproj +++ b/project/Aki.Launcher/Aki.Launcher.csproj @@ -1,7 +1,7 @@  WinExe - net6.0 + net8.0 win-x64 true enable diff --git a/project/build.ps1 b/project/build.ps1 index 6a743aa..b49dfbc 100644 --- a/project/build.ps1 +++ b/project/build.ps1 @@ -1,6 +1,6 @@ $buildFolder = "..\Build" $akiDataFolder = "..\Build\Aki_Data" -$launcherExeFolder = "..\Aki.Launcher\bin\Release\net6.0\win-x64\publish" +$launcherExeFolder = "..\Aki.Launcher\bin\Release\net8.0\win-x64\publish" $launcherAssetFolder = "..\Aki.Launcher\Aki_Data" $licenseFile = "..\..\LICENSE.md" @@ -14,8 +14,8 @@ foreach ($folder in $foldersToCreate) { } # Move built files to the build folder -Copy-Item -Path "$launcherExeFolder\Aki.Launcher.exe" -Destination "$buildFolder" -Copy-Item -Path "$launcherAssetFolder" -Destination "$buildFolder" -Recurse +Copy-Item -Path "$launcherExeFolder\Aki.Launcher.exe" -Destination "$buildFolder" -Force +Copy-Item -Path "$launcherAssetFolder" -Destination "$buildFolder" -Recurse -Force # If any new DLLs need to be copied, add here # Write the contents of the license file to a txt in the build folder