Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ nothing more, nothing less.
## Requirements

- Windows 8+
- [.net 8.0 Desktop Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
- [.net 10.0 Desktop Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)

## Usage

Expand Down Expand Up @@ -252,7 +252,7 @@ I can not change "IsRobbyDead" or "IsVirginiaDead"

The program does not start

- Make sure that .net 8.0 Desktop Runtime is installed. Also make sure to extract all files from the archive if you
- Make sure that .net 10.0 Desktop Runtime is installed. Also make sure to extract all files from the archive if you
downloaded the zip archive manually. Lastly, check if any antivirus is blocking the editor

Antivirus (Windows Defender for example, Smartscreen) is complaining
Expand All @@ -262,7 +262,7 @@ Antivirus (Windows Defender for example, Smartscreen) is complaining

"Could not load file or assembly"

- Make sure to have .net 8.0 Desktop Runtime installed (either x86 or x64)
- Make sure to have .net 10.0 Desktop Runtime installed (either x86 or x64)

My changes are not applied or reverted

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion SOTFEdit.Companion.Shared/SOTFEdit.Companion.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Configurations>Release;Debug</Configurations>
<Platforms>AnyCPU</Platforms>
<NoWarn>NU1701;CS8618</NoWarn>
Expand Down
2 changes: 1 addition & 1 deletion SOTFEdit.Tests/SOTFEdit.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net10.0-windows</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion SOTFEdit/SOTFEdit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
Expand Down
2 changes: 1 addition & 1 deletion ZoomControl/ZoomControl.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0",
"version": "10.0.100",
"rollForward": "latestMinor",
"allowPrerelease": false
}
Expand Down