Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make test runners long-path aware (#5179) #15014

Merged
merged 1 commit into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/testhost.arm64/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<!-- The assemblyIdentity node is needed to fix a binding problem on Win2003 (PS72518) -->
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<!-- Make the application long-path aware (see #5179) -->
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings xmlns:ws2="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
<ws2:longPathAware>true</ws2:longPathAware>
</windowsSettings>
</application>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- Windows 10 -->
Expand Down
6 changes: 6 additions & 0 deletions src/testhost.x86/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<!-- The assemblyIdentity node is needed to fix a binding problem on Win2003 (PS72518) -->
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<!-- Make the application long-path aware (see #5179) -->
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings xmlns:ws2="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
<ws2:longPathAware>true</ws2:longPathAware>
</windowsSettings>
</application>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- Windows 10 -->
Expand Down
6 changes: 6 additions & 0 deletions src/testhost/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<!-- The assemblyIdentity node is needed to fix a binding problem on Win2003 (PS72518) -->
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<!-- Make the application long-path aware (see #5179) -->
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings xmlns:ws2="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
<ws2:longPathAware>true</ws2:longPathAware>
</windowsSettings>
</application>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- Windows 10 -->
Expand Down
6 changes: 6 additions & 0 deletions src/vstest.console/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<!-- The assemblyIdentity node is needed to fix a binding problem on Win2003 (PS72518) -->
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<!-- Make the application long-path aware (see #5179) -->
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings xmlns:ws2="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
<ws2:longPathAware>true</ws2:longPathAware>
</windowsSettings>
</application>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- Windows 10 -->
Expand Down