ignore macos attribute files #302
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "ignore-macos-attribute-files"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When saving files under Mac OS Sequoia to an external drive not formatted with APFS, a dot underscore attribute file is created for modified files, MSBUILD picks these up and fails the build with error:
CSC : error CS2015: '/Volumes/MACBOOK/EXEC/Ryujinx/GitHub/Ryujinx/src/Ryujinx/._Updater.cs' is a binary file instead of a text file [/Volumes/MACBOOK/EXEC/Ryujinx/GitHub/Ryujinx/src/Ryujinx/Ryujinx.csproj]
Adding the following line to the csproj files inside the project group will stop these files from attempted to being built:
$(DefaultItemExcludes);._*
Also suggest that we exclude these files from GIT as well by adding this line to the .gitignore file:
._*
This is a PR to fix this issue so that the MacOS attribute files are ignored both by the build and by git to make development easier when working with external drives.
This fixes issue https://github.com/GreemDev/Ryujinx/issues/301
Download the artifacts for this pull request:
GUI-less
Only for Developers