Skip to content

Commit d57afa5

Browse files
committed
Upgrades overlay target framework to .NET 9
1 parent 9829f35 commit d57afa5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/overlay-sidecar-post-build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import copy from 'recursive-copy';
33
import { rimraf } from 'rimraf';
44

55
async function main() {
6-
const coreSourceDirectory = 'src-overlay-sidecar/bin/Release/net8.0/win-x64/publish';
6+
const coreSourceDirectory = 'src-overlay-sidecar/bin/Release/net9.0/win-x64/publish';
77
const coreTargetDirectory = 'src-core/resources/dotnet-sidecars';
88
await mkdirp(coreTargetDirectory);
99
await copy(coreSourceDirectory, coreTargetDirectory, { overwrite: true });

src-overlay-sidecar/oyasumivr-overlay-sidecar.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
44
<!-- <OutputType>Exe</OutputType>-->
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<ApplicationManifest>app.manifest</ApplicationManifest>
99
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
10-
<RuntimeFrameworkVersion>8.0.3</RuntimeFrameworkVersion>
10+
<RuntimeFrameworkVersion>9.0.6</RuntimeFrameworkVersion>
1111
<SelfContained>true</SelfContained>
1212
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
1313
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>

0 commit comments

Comments
 (0)