Skip to content

Commit

Permalink
Merge pull request bonsai-rx#2016 from glopesdev/long-paths
Browse files Browse the repository at this point in the history
Add support for long paths on Windows
  • Loading branch information
glopesdev authored Sep 17, 2024
2 parents b8ece22 + 96b5784 commit 3daadd6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Bonsai/App.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,14 @@
<!-- Indicates that the application is DPI-aware and will not be automatically scaled by Windows at higher
DPIs. Windows Presentation Foundation (WPF) applications are automatically DPI-aware and do not need
to opt in. Windows Forms applications targeting .NET Framework 4.6 that opt into this setting, should
also set the 'EnableWindowsFormsHighDpiAutoResizing' setting to 'true' in their app.config. -->

also set the 'EnableWindowsFormsHighDpiAutoResizing' setting to 'true' in their app.config.
Makes the application long-path aware. See https://docs.microsoft.com/windows/win32/fileio/maximum-file-path-limitation -->

<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
</windowsSettings>
</application>

Expand Down

0 comments on commit 3daadd6

Please sign in to comment.