From b9bcd0e7496bda159606d9e6f5af927dd95ac05c Mon Sep 17 00:00:00 2001 From: Chev Date: Thu, 22 May 2025 02:07:39 -0700 Subject: [PATCH] LifeSourcesLight: Migrate mod to newer standards - Migrate from .NET 6.0 to .NET 8.0 - Update launchSettings.json --- LifeSourcesLight/LifeSourcesLight.csproj | 13 ++++++++----- LifeSourcesLight/Properties/launchSettings.json | 4 ++-- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/LifeSourcesLight/LifeSourcesLight.csproj b/LifeSourcesLight/LifeSourcesLight.csproj index d2b6580..b4d317c 100644 --- a/LifeSourcesLight/LifeSourcesLight.csproj +++ b/LifeSourcesLight/LifeSourcesLight.csproj @@ -1,13 +1,16 @@ - + + + LifeSourcesLight - net6.0 - AnyCPU latest + false + false + + - - \ No newline at end of file + diff --git a/LifeSourcesLight/Properties/launchSettings.json b/LifeSourcesLight/Properties/launchSettings.json index 8da89ff..1011447 100644 --- a/LifeSourcesLight/Properties/launchSettings.json +++ b/LifeSourcesLight/Properties/launchSettings.json @@ -2,13 +2,13 @@ "profiles": { "Terraria": { "commandName": "Executable", - "executablePath": "dotnet", + "executablePath": "$(DotNetName)", "commandLineArgs": "$(tMLPath)", "workingDirectory": "$(tMLSteamPath)" }, "TerrariaServer": { "commandName": "Executable", - "executablePath": "dotnet", + "executablePath": "$(DotNetName)", "commandLineArgs": "$(tMLServerPath)", "workingDirectory": "$(tMLSteamPath)" }