-
I would like to reference just Accessibility.dll without hardcoding path to it in the project. How that's possible ? |
Beta Was this translation helpful? Give feedback.
Answered by
RussKie
Jul 21, 2021
Replies: 1 comment 3 replies
-
What are you trying to achieve? Accessibility.dll is a part of Windows Desktop SDK, and it is implicitly referenced by the virtue of you declaring |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
kant2002
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What are you trying to achieve?
Accessibility.dll is a part of Windows Desktop SDK, and it is implicitly referenced by the virtue of you declaring
<UseWindowsForms>true</UseWindowsForms>
.It can be found under
C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\<version>\
andC:\Program Files\dotnet\packs\Microsoft.WindowsDesktop.App.Ref\<version>\ref\net6.0\
.