diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2023-02-04 11:51:03 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2023-04-02 15:30:14 -0400 |
commit | eb2a9b69bc1cc7503e9548972d104c114675c252 (patch) | |
tree | 266624995e0512a9632c0bff44729d1d6e7aa801 | |
parent | b9fe45b091484381d2f60220fb09fe7341b20b73 (diff) | |
download | SMAPI-eb2a9b69bc1cc7503e9548972d104c114675c252.tar.gz SMAPI-eb2a9b69bc1cc7503e9548972d104c114675c252.tar.bz2 SMAPI-eb2a9b69bc1cc7503e9548972d104c114675c252.zip |
remove LargeAddressAware flag
This isn't needed anymore since SMAPI is 64-bit now.
-rw-r--r-- | docs/release-notes.md | 1 | ||||
-rw-r--r-- | src/SMAPI/SMAPI.csproj | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md index d09e9d63..c090cab1 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -10,6 +10,7 @@ ## Upcoming release * For players: * Fixed `findstr` error in installer for some players. + * Removed `LargeAddressAware` flag on SMAPI (no longer needed since it's 64-bit now). ## 3.18.2 Released 09 January 2023 for Stardew Valley 1.5.6 or later. diff --git a/src/SMAPI/SMAPI.csproj b/src/SMAPI/SMAPI.csproj index 59ad47f0..e00dd46e 100644 --- a/src/SMAPI/SMAPI.csproj +++ b/src/SMAPI/SMAPI.csproj @@ -8,7 +8,6 @@ <OutputType>Exe</OutputType> <GenerateDocumentationFile>true</GenerateDocumentationFile> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> - <LargeAddressAware Condition="'$(OS)' == 'Windows_NT'">true</LargeAddressAware> <ApplicationIcon>icon.ico</ApplicationIcon> <!--copy dependency DLLs to bin folder so we can include them in installer bundle --> @@ -22,7 +21,6 @@ <Import Project="..\..\build\common.targets" /> <ItemGroup> - <PackageReference Include="LargeAddressAware" Version="1.0.6" /> <PackageReference Include="Mono.Cecil" Version="0.11.4" /> <PackageReference Include="MonoMod.Common" Version="22.3.5.1" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.2" /> |