Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build-debug.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# .github/workflows/debug-build.yml
# .github/workflows/debug-build.yml
Comment thread
FramePerfection marked this conversation as resolved.
name: PR Debug Build (Development)

on:
Expand All @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
dotnet-version: '10.0.x'

- name: Restore dependencies
run: dotnet restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
dotnet-version: '10.0.x'

- name: Restore dependencies
run: dotnet restore
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ If this updated feature set doesn't suit your needs, you can of course still get
As of the current build, STROOP has the following system requirements:
* Windows 11 / Windows 10 / Windows 8.1 / Windows 8 / Windows 7 64-bit or 32-bit
* OpenGL 3.2 or greater
* [.NET 8.0 Runtime](https://dotnet.microsoft.com/download/dotnet/8.0) or higher
* [.NET 10.0 Runtime](https://dotnet.microsoft.com/download/dotnet/10.0) or higher
* [Mupen](https://mupen64.com/) is recommended for TASing. (Nemu64 and some other emulators may work, but that's a bit of a shot in the dark)
* 64 Marios (Must be super)
* Marios must be American, Japanese or PAL

## Building

Requirements:
* A [dotnet 8.0 (or higher) SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) in any capacity
* A [dotnet 10.0 (or higher) SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0) in any capacity
* An internet connection for the [NuGet](https://nuget.org) package dependencies, such as OpenTK.

A simple `dotnet build` in the repository root directory will create a debug build.<br>
Expand Down
6 changes: 4 additions & 2 deletions STROOP/STROOP.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net10.0-windows7.0</TargetFramework>
Comment thread
abart27 marked this conversation as resolved.
Comment thread
FramePerfection marked this conversation as resolved.
<OutputType>WinExe</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down Expand Up @@ -291,5 +291,7 @@
<ProjectReference Include="..\STROOP.Core\STROOP.Core.csproj"/>
<ProjectReference Include="..\STROOP.Variables\STROOP.Variables.csproj" />
</ItemGroup>

<PropertyGroup>
<NoWarn>$(NoWarn);WFO1000</NoWarn>
</PropertyGroup>
</Project>
Loading