VS 2013 Compile error

05/15/2019 20:15 nicksss03#1
So I was trynna to open the AsFlyff files that has been released @ [Only registered and activated users can see links. Click Here To Register...] this topic.

When I trynna to compile it using Visual Studio 2013 I had this error that I do not understand.

Here's the picture : [Only registered and activated users can see links. Click Here To Register...]

Thank you for helping me out! :handsdown:
05/15/2019 20:19 yuantot#2
Hi,

If you are building from IDE, and add the dll project as reference, the dll will copy to the target folder after the building.

But if you build in command line, you need to do this manually by writing the script. See this sample script which will copy the dll to the target folder after the building was done.

Quote:
<PropertyGroup>

<SourcePath>"$(MSBuildProjectDirectory)\$(OutputPa th)*.dll"</SourcePath>

<RootFolder>"D:\Visual Studio 2008\Projects\Win1\Win1\bin\Debug"</RootFolder>

</PropertyGroup>

<Target Name="AfterBuild">

<Message Text ="$(SourcePath)" />

<Exec Command ="copy $(SourcePath) $(RootFolder)" />

</Target>
You need to put this in the library project in. And note I put the copy task in AfterBuild Target.
05/17/2019 15:27 nicksss03#3
Quote:
Originally Posted by yuantot View Post
Hi,

If you are building from IDE, and add the dll project as reference, the dll will copy to the target folder after the building.

But if you build in command line, you need to do this manually by writing the script. See this sample script which will copy the dll to the target folder after the building was done.


You need to put this in the library project in. And note I put the copy task in AfterBuild Target.
I tried googling what you told but in all my power and knowledge I seriously do not get it. Would you elaborate more if you dont mind? Thanks. :handsdown: