Skip to content

Solution File

Richard Martin edited this page Mar 23, 2024 · 1 revision

Framework.sln || Core.sln

When putting together a new solution for a bundle, it can be tricky changing the target platforms in the project files and getting the solution file to sync up. It may have references to platforms the projects no longer support or vice versa. An easy way to resolve these issues is to remove all projects from the solution and re-add them. If playing in the Configuration Manager doesn't fix these problems, you can look at the solution file and see what builds and platforms it supports.

GlobalSection(SolutionConfigurationPlatforms) = preSolution
    Debug|x64 = Debug|x64
    Release|x64 = Release|x64
EndGlobalSection

In our case, we're only targeting x64, so that should be the only platform the solution is tracking.

Back: Solution Overview

Clone this wiki locally