alphaleonis / AlphaVSS

AlphaVSS is a .NET class library released under the MIT license providing a managed API for the Volume Shadow Copy Service also known as VSS.

Home Page:http://alphavss.alphaleonis.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Could Not Load file or assembly 'AlphaVSS.x64.dll'

hnieef opened this issue · comments

Hi i write application using c# and it working fine in my laptop. after that i deploy to production machine but it failed to load assembly AlphaVss.x64.dll which i already include in bin folder

could you rectify why this happen

Thank you

Make sure you have the relevant Visual C++ runtimes installed on machines you are trying to run it on - the AlphaVss dll needs those to run

https://www.microsoft.com/en-GB/download/details.aspx?id=40784

Hey, I have the same problem here, your link wingers999 doesn't work anymore.. Please give us a needed libs to fix the problem.

For some reason the website showing is correct but the link it points to is taking you to a github page instead

The libs you need are the Visual C++ 2013 Redistributables

Link = https://www.microsoft.com/en-GB/download/details.aspx?id=40784

Ah I see, thanks for fast reply!

Fixed the original link as well. Not sure what had happened there.

Manual solution of the problem.

Open the *.csproj file with your own notepad

 <PropertyGroup Condition="............">
.....other props...
<!-- Just add the following line here -->
<Prefer32Bit>false</Prefer32Bit>

 </PropertyGroup>
commented

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.