RestorePackages and WinSCP

Advertisement

Guest

RestorePackages and WinSCP

Hi!

I have set up this parameter in project file:
<RestorePackages>true</RestorePackages>

WinSCP is referenced in that project as nuget.

My goal is to have in source control as less info as possible.
But nuget installation of WinSCP copies file (WinSCP.exe) to project folder a add's it to project.

Nuget installation should not copy file (WinSCP.exe) to project, just add a reference to packages folder like e.g. Entity folder do:

<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\packages\EntityFramework.6.1.3\lib\net40\EntityFramework.dll</HintPath>
<Private>True</Private>
</Reference>

Consider change of nuget installation package.

Thanx.

Marian

Reply with quote

Advertisement

martin
Site Admin
martin avatar
Joined:
Posts:
40,476
Location:
Prague, Czechia

Re: RestorePackages and WinSCP

The WinSCP.exe is added to the project, so that Copy to Output Directory property can be set on it.

Reply with quote

Guest

RestorePackages and WinSCP

Copy to output directory can be done also on link.
My project file looks this way:

<Content Include="..\packages\WinSCP.5.7.6\content\WinSCP.exe">
<Link>WinSCP.exe</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>

I can't see the reason to copy WinSCP.exe to project file.

Reply with quote

jfwrightuk
Guest

Should not need to add winscp.exe to source control!

I agree with the previous request. Why can't winscp.exe be added to the lib folder rather than the content folder of the nuget package? As it stands, we either have to add winscp.exe to source control to get this to build under continuous integration, or manually modify the .csproj file as suggested above, and that will break every time the package version is updated.

Reply with quote

Advertisement

You can post new topics in this forum