Skip to content

Commit

Permalink
Add support for long paths on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
glopesdev committed Sep 16, 2024
1 parent b8ece22 commit 96b5784
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 96b5784

Please sign in to comment.