Skip to content

Commit

Permalink
Make runner and agents long-path-aware
Browse files Browse the repository at this point in the history
  • Loading branch information
CharliePoole committed Jun 11, 2024
1 parent c8fe139 commit 2823733
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/NUnitConsole/nunit3-console/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,13 @@

</application>
</compatibility>

<!-- 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>
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
</windowsSettings>
</application>

</asmv1:assembly>
9 changes: 9 additions & 0 deletions src/NUnitEngine/nunit-agent-x86/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,13 @@

</application>
</compatibility>

<!-- 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>
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
</windowsSettings>
</application>

</asmv1:assembly>
9 changes: 9 additions & 0 deletions src/NUnitEngine/nunit-agent/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,13 @@

</application>
</compatibility>

<!-- 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>
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
</windowsSettings>
</application>

</asmv1:assembly>

0 comments on commit 2823733

Please sign in to comment.