diff options
| author | Mary <me@thog.eu> | 2021-12-08 21:43:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-08 17:43:02 -0300 |
| commit | a0aa87366c25611b1b0380e94d4edc8f9f2338e2 (patch) | |
| tree | b4265e1eabb29fb153c6cd36f2b36121cc5da1ca | |
| parent | 3e2f89b4fd863e7052721e735036fc24fd740b40 (diff) | |
misc: Fix alsoft.ini being present on Linux releases (#2902)
| -rw-r--r-- | Ryujinx/Ryujinx.csproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Ryujinx.csproj b/Ryujinx/Ryujinx.csproj index e747dc5b..9d002d39 100644 --- a/Ryujinx/Ryujinx.csproj +++ b/Ryujinx/Ryujinx.csproj @@ -42,7 +42,7 @@ </ItemGroup> <ItemGroup> - <None Update="alsoft.ini"> + <None Update="alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> <None Update="Config.json" Condition="'$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Profile Debug'"> |
