openssh-portable/contrib/win32/openssh
Manoj Ampalam 70da1e67ea fgets and utf8 functions for Windows (#87) 2017-03-06 16:18:40 -08:00
..
AnalyzeCodeDiff.ps1
OpenSSL-1.0.2d_build.cmd
README.txt
VSWithBuildTools.xml
Win32-OpenSSH.sln Multiple Fixes (#82) 2017-02-15 21:32:50 -08:00
appveyor.psm1 Fixes to CI validation failures 2017-02-16 22:57:05 -08:00
build.psm1 Groupaccess support (https://github.com/PowerShell/Win32-OpenSSH/issues/463) 2017-02-14 13:43:06 -08:00
config.h.vs AF_UNIX IPC sockets client side support (#84) 2017-02-17 21:02:59 -08:00
config.ps1 Got rid of w32posix.h and defs.h (https://github.com/PowerShell/Win32-OpenSSH/issues/498) 2017-01-25 14:43:55 -08:00
config.vcxproj Fixes to CI validation failures 2017-02-16 22:57:05 -08:00
config.vcxproj.filters
install-sshd.ps1 SCP bug fix: SCP does not copy file exceeds 2,147,483,648 bytes. (https://github.com/PowerShell/Win32-OpenSSH/issues/145) (#70) 2017-01-31 20:07:29 -08:00
install-sshlsa.ps1
keygen.vcxproj Fixed progress meter issue (https://github.com/PowerShell/Win32-OpenSSH/issues/505) (#68) 2017-01-29 23:54:24 -08:00
keygen.vcxproj.filters
libssh.vcxproj fgets and utf8 functions for Windows (#87) 2017-03-06 16:18:40 -08:00
libssh.vcxproj.filters fgets and utf8 functions for Windows (#87) 2017-03-06 16:18:40 -08:00
openbsd_compat.vcxproj
openbsd_compat.vcxproj.filters
openssh_build.cmd
paths.targets
resource.h
scp.vcxproj Fixed progress meter issue (https://github.com/PowerShell/Win32-OpenSSH/issues/505) (#68) 2017-01-29 23:54:24 -08:00
scp.vcxproj.filters
sftp-server.vcxproj Fixed progress meter issue (https://github.com/PowerShell/Win32-OpenSSH/issues/505) (#68) 2017-01-29 23:54:24 -08:00
sftp-server.vcxproj.filters Fixed progress meter issue (https://github.com/PowerShell/Win32-OpenSSH/issues/505) (#68) 2017-01-29 23:54:24 -08:00
sftp.vcxproj Fixed progress meter issue (https://github.com/PowerShell/Win32-OpenSSH/issues/505) (#68) 2017-01-29 23:54:24 -08:00
sftp.vcxproj.filters
ssh-add.vcxproj Fixed progress meter issue (https://github.com/PowerShell/Win32-OpenSSH/issues/505) (#68) 2017-01-29 23:54:24 -08:00
ssh-add.vcxproj.filters
ssh-agent.vcxproj Groupaccess support (https://github.com/PowerShell/Win32-OpenSSH/issues/463) 2017-02-14 13:43:06 -08:00
ssh-lsa.def
ssh-lsa.vcxproj Fixed progress meter issue (https://github.com/PowerShell/Win32-OpenSSH/issues/505) (#68) 2017-01-29 23:54:24 -08:00
ssh-lsa.vcxproj.filters
ssh-shellhost.vcxproj Multiple Fixes (#82) 2017-02-15 21:32:50 -08:00
ssh.vcxproj Fixed progress meter issue (https://github.com/PowerShell/Win32-OpenSSH/issues/505) (#68) 2017-01-29 23:54:24 -08:00
ssh.vcxproj.filters
sshd.vcxproj Groupaccess support (https://github.com/PowerShell/Win32-OpenSSH/issues/463) 2017-02-14 13:43:06 -08:00
sshd.vcxproj.filters Groupaccess support (https://github.com/PowerShell/Win32-OpenSSH/issues/463) 2017-02-14 13:43:06 -08:00
sshd_config Improvements to CI build and validation output 2017-01-27 10:47:20 -08:00
targetos.manifest
uninstall-sshd.ps1
uninstall-sshlsa.ps1
unittest-bitmap.vcxproj
unittest-hostkeys.vcxproj
unittest-kex.vcxproj
unittest-match.vcxproj Cleaned up unittests (https://github.com/PowerShell/Win32-OpenSSH/issues/477) 2017-01-27 14:11:27 -08:00
unittest-sshbuf.vcxproj
unittest-sshkey.vcxproj
unittest-utf8.vcxproj
unittest-win32compat.vcxproj
version.rc cranked up build version 2017-02-15 21:55:00 -08:00
win32iocompat.vcxproj fgets and utf8 functions for Windows (#87) 2017-03-06 16:18:40 -08:00
win32iocompat.vcxproj.filters fgets and utf8 functions for Windows (#87) 2017-03-06 16:18:40 -08:00

README.txt

Custom paths for the visual studio projects are defined in paths.targets.  

All projects import this targets file, and it should be in the same directory as the project.

The custom paths are:

OpenSSH-Src-Path            =  The directory path of the OpenSSH root source directory (with trailing slash)
OpenSSH-Bin-Path            =  The directory path of the location to which binaries are placed.  This is the output of the binary projects
OpenSSH-Lib-Path            =  The directory path of the location to which libraries are placed.  This is the output of the libary projects
OpenSSL-Win32-Release-Path  =  The directory path of OpenSSL statically linked compiled for Win32-Release. This path is used for
                               include and library paths and for Win32-Release. 
OpenSSL-Win32-Debug-Path    =  The directory path of OpenSSL statically linked compiled for Win32-Debug. This path is used for
                               include and library paths and for Win32-Debug.  
OpenSSL-x64-Release-Path    =  The directory path of OpenSSL statically linked compiled for x64-Release. This path is used for
                               include and library paths and for x64-Release. 
OpenSSL-x64-Debug-Path      =  The directory path of OpenSSL statically linked compiled for x64-Debug. This path is used for
                               include and library paths and for x64-Debug. 

 

The Release/Debug OpenSSL directories output is the standard 'install' output of OpenSSL compiled under Visual Studio 2015 using static c-runtimes.