diff --git a/.vscode/launch.json b/.vscode/launch.json index 02bac795bc..d1c20a2f56 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,19 +6,19 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "npm: build:data", - "program": "${workspaceFolder}/c-sharp/bin/Debug/net7.0/ParanextDataProvider", + "program": "${workspaceFolder}/c-sharp/bin/Debug/net8.0/ParanextDataProvider", "args": [], "cwd": "${workspaceFolder}", "stopAtEntry": false, "justMyCode": false, "windows": { - "program": "${workspaceFolder}/c-sharp/bin/Debug/net7.0/win-x64/ParanextDataProvider.exe" + "program": "${workspaceFolder}/c-sharp/bin/Debug/net8.0/win-x64/ParanextDataProvider.exe" }, "linux": { - "program": "${workspaceFolder}/c-sharp/bin/Debug/net7.0/linux-x64/ParanextDataProvider" + "program": "${workspaceFolder}/c-sharp/bin/Debug/net8.0/linux-x64/ParanextDataProvider" }, "osx": { - "program": "${workspaceFolder}/c-sharp/bin/Debug/net7.0/osx-x64/ParanextDataProvider" + "program": "${workspaceFolder}/c-sharp/bin/Debug/net8.0/osx-x64/ParanextDataProvider" } }, { diff --git a/electron-builder.json5 b/electron-builder.json5 index ac6766aef2..cd43f46b48 100644 --- a/electron-builder.json5 +++ b/electron-builder.json5 @@ -15,7 +15,7 @@ }, extraResources: [ { - from: './c-sharp/bin/Release/net7.0/publish/osx-${arch}/', + from: './c-sharp/bin/Release/net8.0/publish/osx-${arch}/', to: './dotnet/', }, ], @@ -43,7 +43,7 @@ target: ['nsis', 'nsis-web', 'portable'], extraResources: [ { - from: './c-sharp/bin/Release/net7.0/publish/win-x64/', + from: './c-sharp/bin/Release/net8.0/publish/win-x64/', to: './dotnet/', }, ], @@ -53,7 +53,7 @@ category: 'Development', extraResources: [ { - from: './c-sharp/bin/Release/net7.0/publish/linux-x64/', + from: './c-sharp/bin/Release/net8.0/publish/linux-x64/', to: './dotnet/', }, ], diff --git a/package.json b/package.json index 5b0f5a379d..771af5043f 100644 --- a/package.json +++ b/package.json @@ -50,9 +50,9 @@ "build:renderer": "cross-env NODE_ENV=production TS_NODE_TRANSPILE_ONLY=true webpack --config ./.erb/configs/webpack.config.renderer.prod.ts", "build:data": "dotnet build c-sharp/ParanextDataProvider.sln", "build:data-release": "run-script-os", - "build:data-release:windows": "dotnet publish c-sharp/ParanextDataProvider.csproj -r win-x64 -o ./c-sharp/bin/Release/net7.0/publish/win-x64/", - "build:data-release:linux": "dotnet publish c-sharp/ParanextDataProvider.csproj -r linux-x64 -o ./c-sharp/bin/Release/net7.0/publish/linux-x64/", - "build:data-release:macos": "dotnet publish c-sharp/ParanextDataProvider.csproj -r osx-x64 -o ./c-sharp/bin/Release/net7.0/publish/osx-x64/ && dotnet publish c-sharp/ParanextDataProvider.csproj -r osx-arm64 -o ./c-sharp/bin/Release/net7.0/publish/osx-arm64/", + "build:data-release:windows": "dotnet publish c-sharp/ParanextDataProvider.csproj -r win-x64 -o ./c-sharp/bin/Release/net8.0/publish/win-x64/", + "build:data-release:linux": "dotnet publish c-sharp/ParanextDataProvider.csproj -r linux-x64 -o ./c-sharp/bin/Release/net8.0/publish/linux-x64/", + "build:data-release:macos": "dotnet publish c-sharp/ParanextDataProvider.csproj -r osx-x64 -o ./c-sharp/bin/Release/net8.0/publish/osx-x64/ && dotnet publish c-sharp/ParanextDataProvider.csproj -r osx-arm64 -o ./c-sharp/bin/Release/net8.0/publish/osx-arm64/", "build:types": "cd lib/papi-dts && npm run build", "build:platform-bible-react": "cd lib/platform-bible-react && npm run build", "build:platform-bible-utils": "cd lib/platform-bible-utils && npm run build",