Skip to content

Commit a985d16

Browse files
committed
Updated installer profiles and build script to .NET 10
1 parent a3367f9 commit a985d16

5 files changed

Lines changed: 4 additions & 5 deletions

File tree

VidCoder/Properties/PublishProfiles/InstallerProfile.pubxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
88
<Platform>x64</Platform>
99
<PublishDir>bin\publish-installer</PublishDir>
1010
<PublishProtocol>FileSystem</PublishProtocol>
11-
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
11+
<TargetFramework>net10.0-windows10.0.19041.0</TargetFramework>
1212
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
1313
<SelfContained>false</SelfContained>
1414
<PublishSingleFile>False</PublishSingleFile>

VidCoder/Properties/PublishProfiles/PortableProfile.pubxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
88
<Platform>x64</Platform>
99
<PublishDir>bin\publish-portable</PublishDir>
1010
<PublishProtocol>FileSystem</PublishProtocol>
11-
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
11+
<TargetFramework>net10.0-windows10.0.19041.0</TargetFramework>
1212
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
1313
<SelfContained>true</SelfContained>
1414
<PublishSingleFile>False</PublishSingleFile>

VidCoderCommon/VidCoderCommon.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
<PackageReference Include="PipeMethodCalls.NetJson" />
3030
<PackageReference Include="ReactiveUI" />
3131
<PackageReference Include="System.Data.SQLite.Core" />
32-
<PackageReference Include="System.Text.Json" />
3332
<PackageReference Include="valueinjecter" />
3433
</ItemGroup>
3534
<ItemGroup>

VidCoderWorker/Properties/PublishProfiles/PortableProfile.pubxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
88
<Platform>x64</Platform>
99
<PublishDir>bin\publish-portable</PublishDir>
1010
<PublishProtocol>FileSystem</PublishProtocol>
11-
<TargetFramework>net8.0</TargetFramework>
11+
<TargetFramework>net10.0</TargetFramework>
1212
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
1313
<SelfContained>true</SelfContained>
1414
<PublishSingleFile>False</PublishSingleFile>

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ vpk pack `
146146
--outputDir $releaseDir `
147147
--splashImage .\Installer\InstallerSplash.png `
148148
--signParams "/a /fd SHA256 /tr http://timestamp.digicert.com /td SHA256" `
149-
--framework net8.0.5-x64
149+
--framework net10.0.2-x64
150150

151151
ExitIfFailed;
152152
Copy-Item -Path ("$releaseDir\" + $packId + "-win-Setup.exe") -Destination ".\Installer\BuiltInstallers\$binaryNameBase.exe" -Force

0 commit comments

Comments
 (0)