Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
ALTER ASSEMBLY ClassLibrary5
FROM (D:\RMS\visualstudio\Projects\ClassLibrary5\ClassLibrary5\bin\Debug\ClassLibrary5.dll'
WITH PERMISSION_SET = EXTERNAL_ACCESS
Error:-ALTER ASSEMBLY failed because it could not read from the physical file '(D:\RMS\visualstudio\Projects\ClassLibrary5\ClassLibrary5\bin\Debug\ClassLibrary5.dll': 50(The request is not supported.).
Posted

1 solution

If this "(D:" is not a typo and is indeed what was executed then that error return is correct:
ALTER ASSEMBLY ClassLibrary5
 FROM (D:\RMS\visualstudio\Projects\ClassLibrary5\ClassLibrary5\bin\Debug\ClassLibrary5.dll'
  WITH PERMISSION_SET = EXTERNAL_ACCESS

Does this work:
ALTER ASSEMBLY ClassLibrary5
 FROM 'D:\RMS\visualstudio\Projects\ClassLibrary5\ClassLibrary5\bin\Debug\ClassLibrary5.dll'
  WITH PERMISSION_SET = EXTERNAL_ACCESS
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900