diff options
Diffstat (limited to 'vsprojects/coapp')
-rw-r--r-- | vsprojects/coapp/openssl/.gitignore | 10 | ||||
-rw-r--r-- | vsprojects/coapp/openssl/README.md | 38 | ||||
-rw-r--r-- | vsprojects/coapp/openssl/buildall.bat | 84 | ||||
-rw-r--r-- | vsprojects/coapp/openssl/grpc.dependencies.openssl.autopkg | 110 | ||||
-rw-r--r-- | vsprojects/coapp/openssl/libeay32.vcxproj | 828 | ||||
-rw-r--r-- | vsprojects/coapp/openssl/managed_targets/grpc.dependencies.openssl.redist.targets | 44 | ||||
-rw-r--r-- | vsprojects/coapp/openssl/openssl.sln | 39 | ||||
-rw-r--r-- | vsprojects/coapp/openssl/packages.config | 5 | ||||
-rw-r--r-- | vsprojects/coapp/openssl/ssleay32.vcxproj | 240 | ||||
-rw-r--r-- | vsprojects/coapp/openssl/version.inc | 1 | ||||
-rw-r--r-- | vsprojects/coapp/zlib/.gitignore | 5 | ||||
-rw-r--r-- | vsprojects/coapp/zlib/README.md | 36 | ||||
-rw-r--r-- | vsprojects/coapp/zlib/buildall.bat | 77 | ||||
-rw-r--r-- | vsprojects/coapp/zlib/grpc.dependencies.zlib.autopkg | 108 | ||||
-rw-r--r-- | vsprojects/coapp/zlib/managed_targets/grpc.dependencies.zlib.redist.targets | 43 | ||||
-rw-r--r-- | vsprojects/coapp/zlib/version.inc | 1 | ||||
-rw-r--r-- | vsprojects/coapp/zlib/zlib.sln | 26 | ||||
-rw-r--r-- | vsprojects/coapp/zlib/zlib.vcxproj | 147 |
18 files changed, 0 insertions, 1842 deletions
diff --git a/vsprojects/coapp/openssl/.gitignore b/vsprojects/coapp/openssl/.gitignore deleted file mode 100644 index 1482603721..0000000000 --- a/vsprojects/coapp/openssl/.gitignore +++ /dev/null @@ -1,10 +0,0 @@ -*.nupkg -*.def -/nuget.exe -/packages -/Debug -/Release -/output -/x64 -/dest - diff --git a/vsprojects/coapp/openssl/README.md b/vsprojects/coapp/openssl/README.md deleted file mode 100644 index a0a4deaa86..0000000000 --- a/vsprojects/coapp/openssl/README.md +++ /dev/null @@ -1,38 +0,0 @@ -OpenSSL Native Nuget package -------------------------- - -Uses [CoApp](http://coapp.org/) project to build the zlib package. - -Prerequisites -------------- -Multiple versions of VS installed to be able to build all the targets: -* Visual Studio 2015 -* Visual Studio 2013 -* Visual Studio 2010 (you might need SP1 to prevent LNK1123 error) - -ActivePerl - -CoApp toolkit: http://downloads.coapp.org/files/CoApp.Tools.Powershell.msi - -More details on installation: http://coapp.org/tutorials/installation.html - -Building --------- - -Build all flavors of openssl library using the provided batch file. -``` -buildall.bat -``` - -Then, create NuGet package using powershell (you'll need the CoApp toolkit installed): -``` -[THIS_DIRECTORY]> Write-NuGetPackage grpc.dependencies.openssl.autopkg -``` - -This will create three NuGet packages: -* the main dev package -* the redistributable package that contains just the binaries and no headers -* the symbols package (debug symbols) - -Later, you can push the package to NuGet.org repo. -Attention: before pusing the resulting nuget package to public nuget repo, you have to be 100% sure it works correctly - there’s no way how to delete or update an already existing package.
\ No newline at end of file diff --git a/vsprojects/coapp/openssl/buildall.bat b/vsprojects/coapp/openssl/buildall.bat deleted file mode 100644 index b020fb708e..0000000000 --- a/vsprojects/coapp/openssl/buildall.bat +++ /dev/null @@ -1,84 +0,0 @@ -@rem Copyright 2016 gRPC authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem http://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. - -rem Restore using NuGet dependencies (Download NuGet from nuget.org and put it in this directory first) -nuget restore || goto eof: - - -setlocal -rem First do a bit of hacking to make sure we have headers ready in openssl's inc32 directory -cd ..\..\..\third_party\openssl -call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86 -perl Configure no-asm VC-WIN32 || goto :eof -perl util\mkfiles.pl >MINFO || goto :eof -perl util\mk1mf.pl no-asm VC-WIN32 >ms\nt.mak || goto :eof -mkdir inc32\openssl -mkdir tmp32 -nmake -f ms\nt.mak headers || goto :eof -endlocal - -setlocal -call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 -call :build x64 Release v140 || goto :eof -call :build x64 Debug v140 || goto :eof -endlocal - -setlocal -call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86 -call :build Win32 Release v140 || goto :eof -call :build Win32 Debug v140 || goto :eof -endlocal - -setlocal -call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64 -call :build x64 Release v120 || goto :eof -call :build x64 Debug v120 || goto :eof -endlocal - -setlocal -call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86 -call :build Win32 Release v120 || goto :eof -call :build Win32 Debug v120 || goto :eof -endlocal - -rem setlocal -rem call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" amd64 -rem call :build x64 Release v110 || goto :eof -rem call :build x64 Debug v110 || goto :eof -rem endlocal - -rem setlocal -rem call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" x86 -rem call :build Win32 Release v110 || goto :eof -rem call :build Win32 Debug v110 || goto :eof -rem endlocal - -rem setlocal -rem call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" amd64 -rem call :build x64 Release v100 || goto :eof -rem call :build x64 Debug v100 || goto :eof -rem endlocal - -setlocal -call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86 -call :build Win32 Release v100 || goto :eof -call :build Win32 Debug v100 || goto :eof -endlocal - -:build -msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesConfigurationType=dynamic /P:ConfigurationType=DynamicLibrary .\openssl.sln || goto :eof -msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesConfigurationType=static /P:ConfigurationType=StaticLibrary .\openssl.sln || goto :eof -goto :eof - - diff --git a/vsprojects/coapp/openssl/grpc.dependencies.openssl.autopkg b/vsprojects/coapp/openssl/grpc.dependencies.openssl.autopkg deleted file mode 100644 index 1f4762d155..0000000000 --- a/vsprojects/coapp/openssl/grpc.dependencies.openssl.autopkg +++ /dev/null @@ -1,110 +0,0 @@ -@import @"version.inc"; - -configurations -{ - // See https://github.com/coapp/coapp.powershell/issues/112 - Toolset - { - key : "PlatformToolset"; // this is CoApp pre-defined key - choices: { v140, v120, v110, v100 }; - }; -} - -#define { - package-id = "grpc.dependencies.openssl"; -} - -nuget { - // the nuspec file metadata. Gets created/updated on build - nuspec { - id = ${package-id}; - version : ${package-version}; - title: gRPC Native Dependency: OpenSSL; - authors: {Mark J. Cox, Ralf S. Engelschall, Dr. Stephen Henson, Ben Laurie, Garrett Serack, Tim Rogers}; - owners: {Jan Tattermusch}; - licenseUrl: "http://www.openssl.org/source/license.html"; - projectUrl: "http://github.com/grpc/grpc"; - iconUrl: "http://openssl.com/images/openssl-logo.png"; - requireLicenseAcceptance:false; - summary: "An OpenSSL library"; - description: @"Native OpenSSL library. - OpenSSL homepage: http://www.openssl.org"; - releaseNotes: "Release of OpenSSL 1.0.2d libraries."; - copyright: Copyright 2015; - tags: { openssl, native, CoApp }; - - }; - - dependencies { - packages : { - grpc.dependencies.zlib/1.2.8.10 - }; - } - - // the files that go into the content folders - // (inserted into the nuspec file) - files { - - // .targets file that are applied when redist package is installed from a managed project. - managed_build: { - #output { - package = redist; - }; - #destination = "\build\portable-net45+netcore45+wpa81+wp8"; - "managed_targets\${package-id}.redist.targets"; - }; - - nestedInclude: { - #destination = "${d_include}\openssl"; - #excludes : { ..\..\..\third_party\openssl\inc32\openssl\opensslconf.h }; - "..\..\..\third_party\openssl\inc32\openssl\*"; - }; - - // TODO(jtattermusch): Visual Studio 2010 and 2012 Express (v100 and v110 toolsets) don't support x64, - // so while generating the package, you will get a warning that corresponding files are missing - // (and the resulting package will be somewhat incomplete). - ("v100,v120,v140", "Win32,x64", "release,debug", "Dynamic,Static") => { - [${0},${1},${2},${3}] { - lib: { .\output\${0}\${1}\${2}\${3}\libeay32.lib; - .\output\${0}\${1}\${2}\${3}\ssleay32.lib }; - - source: { - #destination = ${d_src}\openssl; - .\output\${0}\${1}\${2}\${3}\include\openssl\opensslconf.h - }; - }; - }; - ("v100,v120,v140", "Win32,x64", "release,debug", "Dynamic") => { - [${0},${1},${2},${3}] { - bin: { .\output\${0}\${1}\${2}\${3}\libeay32.dll; - .\output\${0}\${1}\${2}\${3}\ssleay32.dll }; - symbols: { .\output\${0}\${1}\${2}\${3}\libeay32.pdb; - .\output\${0}\${1}\${2}\${3}\ssleay32.pdb }; - }; - }; - - }; - - // the VC++ .props file that gets generated and inserted into the ${d_content} folder - props { - PropertyGroup { - CallingConvention-zlib = cdecl; - } - - }; - - // the VC++ .targets file that gets generated and inserted into the ${d_content} folder - targets { - // every configuration needs to reference the include directories. - Includes += ${pkg_root}${d_include}; - // Defines += HAS_ZLIB; - - ("v100,v110,v120,v140", "Win32,x64", "release,debug", "Dynamic,Static") => { - [${0},${1},${2},${3}] { - Includes += ${pkg_root}${d_include}; - }; - }; - - }; -} - diff --git a/vsprojects/coapp/openssl/libeay32.vcxproj b/vsprojects/coapp/openssl/libeay32.vcxproj deleted file mode 100644 index 46ddbde618..0000000000 --- a/vsprojects/coapp/openssl/libeay32.vcxproj +++ /dev/null @@ -1,828 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <ItemGroup Label="ProjectConfigurations"> - <ProjectConfiguration Include="Debug|Win32"> - <Configuration>Debug</Configuration> - <Platform>Win32</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="Release|Win32"> - <Configuration>Release</Configuration> - <Platform>Win32</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="Debug|x64"> - <Configuration>Debug</Configuration> - <Platform>x64</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="Release|x64"> - <Configuration>Release</Configuration> - <Platform>x64</Platform> - </ProjectConfiguration> - </ItemGroup> - <PropertyGroup> - <OpenSslPath>..\..\..\third_party\openssl</OpenSslPath> - </PropertyGroup> - <PropertyGroup Label="Globals"> - <ProjectGuid>{BE42CA67-7C48-4882-BE59-111CB41142BE}</ProjectGuid> - <Keyword>Win32Proj</Keyword> - <RootNamespace>$(LibName)</RootNamespace> - <RestorePackages>true</RestorePackages> - </PropertyGroup> - <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> - <PropertyGroup Label="ConfigurationSettings"> - <ConfigurationType>DynamicLibrary</ConfigurationType> - <PlatformToolset>v110</PlatformToolset> - <CallingConvention>Cdecl</CallingConvention> - <NoASM>true</NoASM> - <OutputPath>output\$(PlatformToolset)\$(Platform)\$(Configuration)\$(UsesConfigurationType)\</OutputPath> - <OutDir>$(OutputPath)</OutDir> - </PropertyGroup> - <Import Project="$(CoAppEtcDirectory)vcxproj.inc" Condition="Exists('$(CoAppEtcDirectory)vcxproj.inc')" /> - <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> - <Import Condition="exists('.\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.props')" Project=".\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.props" /> - <Import Condition="exists('.\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.props')" Project=".\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.props" /> - <ImportGroup Label="ExtensionSettings" /> - <ImportGroup Label="PropertySheets"> - <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" /> - </ImportGroup> - <PropertyGroup Label="UserMacros" /> - <PropertyGroup> - <LinkIncremental Condition="'$(Configuration)'=='Release'">false</LinkIncremental> - <LinkIncremental Condition="'$(Configuration)'=='Debug'">true</LinkIncremental> - <CallingConvention-zlib>$(CallingConvention)</CallingConvention-zlib> - <Linkage-zlib>$(UsesConfigurationType)</Linkage-zlib> - </PropertyGroup> - <ItemDefinitionGroup> - <ClCompile> - <AdditionalIncludeDirectories>$(OpenSslPath);$(OpenSslPath)\inc32;$(OpenSslPath)\crypto;$(OpenSslPath)\crypto\asn1;$(OpenSslPath)\crypto\evp;$(OpenSslPath)\crypto\md2;$(OpenSslPath)\crypto\modes;$(OpenSslPath)\crypto\store;$(OpenSslPath)\include;$(OutDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <BufferSecurityCheck>true</BufferSecurityCheck> - <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> - <PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;L_ENDIAN;MK1MF_BUILD;WIN32_LEAN_AND_MEAN;OPENSSL_THREADS;ZLIB;OPENSSL_SYSNAME_WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>OPENSSL_BUILD_SHLIBCRYPTO;OPENSSL_NO_IDEA;OPENSSL_NO_RC5;OPENSSL_NO_MD2;OPENSSL_NO_KRB5;OPENSSL_NO_JPAKE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>DSO_WIN32;UNICODE;_UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(ConfigurationType)'=='DynamicLibrary'">_WINDLL;_REENTRANT;OPENSSL_NO_STATIC_ENGINE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(ConfigurationType)'=='StaticLibrary'">OPENSSL_NO_DYNAMIC_ENGINE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(Linkage-zlib)'=='dynamic'">ZLIB_SHARED;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(NoASM)'=='true'">OPENSSL_NO_ASM;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <CallingConvention>%(CallingConvention)</CallingConvention> - <StringPooling>true</StringPooling> - <SuppressStartupBanner>true</SuppressStartupBanner> - <TreatWarningAsError>false</TreatWarningAsError> - <WarningLevel>Level3</WarningLevel> - </ClCompile> - <Lib> - <SuppressStartupBanner>true</SuppressStartupBanner> - <IgnoreAllDefaultLibraries>true</IgnoreAllDefaultLibraries> - <IgnoreSpecificDefaultLibraries>zlib$(OutNameSuffix).lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries> - </Lib> - <Link> - <AllowIsolation>true</AllowIsolation> - <DataExecutionPrevention>true</DataExecutionPrevention> - <GenerateDebugInformation>true</GenerateDebugInformation> - <RandomizedBaseAddress>true</RandomizedBaseAddress> - <SuppressStartupBanner>true</SuppressStartupBanner> - <AdditionalDependencies>ws2_32.lib;crypt32.lib;%(AdditionalDependencies)</AdditionalDependencies> - <ModuleDefinitionFile>.\libeay32.def</ModuleDefinitionFile> - </Link> - <ResourceCompile> - <AdditionalIncludeDirectories>$(OpenSslPath);$(OpenSslPath)\inc32;$(OpenSslPath)\crypto;$(OpenSslPath)\crypto\asn1;$(OpenSslPath)\crypto\evp;$(OpenSslPath)\crypto\md2;$(OpenSslPath)\crypto\modes;$(OpenSslPath)\crypto\store;$(OpenSslPath)\include;$(OutDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;L_ENDIAN;MK1MF_BUILD;WIN32_LEAN_AND_MEAN;OPENSSL_THREADS;ZLIB;OPENSSL_SYSNAME_WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>OPENSSL_BUILD_SHLIBCRYPTO;OPENSSL_NO_IDEA;OPENSSL_NO_RC5;OPENSSL_NO_MD2;OPENSSL_NO_KRB5;OPENSSL_NO_JPAKE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>DSO_WIN32;UNICODE;_UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(ConfigurationType)'=='DynamicLibrary'">_WINDLL;_REENTRANT;OPENSSL_NO_STATIC_ENGINE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(ConfigurationType)'=='StaticLibrary'">OPENSSL_NO_DYNAMIC_ENGINE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(Linkage-zlib)'=='dynamic'">ZLIB_SHARED;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>OPENSSL_NO_ASM;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>CRYPTO;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> - <ClCompile> - <AdditionalOptions>/Gs0 %(AdditionalOptions)</AdditionalOptions> - <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> - <ExceptionHandling>Sync</ExceptionHandling> - <MinimalRebuild>false</MinimalRebuild> - <OmitFramePointers>false</OmitFramePointers> - <Optimization>Disabled</Optimization> - <PreprocessorDefinitions>DEBUG;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ClCompile> - <ResourceCompile> - <PreprocessorDefinitions>DEBUG;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> - <ClCompile> - <AdditionalOptions>/MP %(AdditionalOptions)</AdditionalOptions> - <ExceptionHandling>false</ExceptionHandling> - <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed> - <FunctionLevelLinking>true</FunctionLevelLinking> - <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion> - <IntrinsicFunctions>true</IntrinsicFunctions> - <OmitFramePointers>true</OmitFramePointers> - <Optimization>Full</Optimization> - <RuntimeTypeInfo>false</RuntimeTypeInfo> - <WholeProgramOptimization>true</WholeProgramOptimization> - </ClCompile> - <Link> - <EnableCOMDATFolding>true</EnableCOMDATFolding> - <OptimizeReferences>true</OptimizeReferences> - </Link> - <ResourceCompile> - </ResourceCompile> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Platform)'=='Win32'"> - <ClCompile> - <PreprocessorDefinitions>WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">MultiThreadedDebug</RuntimeLibrary> - <RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">MultiThreaded</RuntimeLibrary> - </ClCompile> - <ResourceCompile> - <PreprocessorDefinitions>WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Platform)'=='x64'"> - <ClCompile> - <PreprocessorDefinitions>WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">MultiThreadedDebug</RuntimeLibrary> - <RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Release|x64'">MultiThreaded</RuntimeLibrary> - </ClCompile> - <ResourceCompile> - <PreprocessorDefinitions>WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - </ItemDefinitionGroup> - <ItemGroup> - <None Include="openssl.gyp" /> - </ItemGroup> - <ItemGroup> - <ClCompile Include="$(OpenSslPath)\ms\uplink.c" > - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\cversion.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ex_data.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\mem_clr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\mem_dbg.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\o_dir.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\o_fips.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\o_time.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cryptlib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\o_str.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\uid.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ebcdic.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\mem.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\o_init.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\fips_ers.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cpt_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\krb5\krb5_asn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rand\rand_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rand\rand_os2.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rand\rand_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rand\rand_win.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rand\rand_egd.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rand\rand_nw.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rand\randfile.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rand\rand_unix.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rand\md_rand.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_skey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_sxnet.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_ocsp.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_ncons.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\pcy_node.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_bcons.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_pci.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\pcy_data.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_ia5.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_utl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_cpols.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_conf.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_akeya.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_pku.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_addr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_int.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\pcy_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_pcons.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_genn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_purp.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\pcy_tree.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_enum.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_pmaps.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_alt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_bitst.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_crld.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\pcy_map.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_info.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_asid.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_prn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_akey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_pcia.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\pcy_cache.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_extku.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509v3\v3_scts.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\txt_db\txt_db.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdh\ech_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdh\ech_key.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdh\ech_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdh\ech_ossl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdh\ech_kdf.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\idea\i_cfb64.c" > - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\idea\i_skey.c" > - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\idea\i_cbc.c" > - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\idea\i_ofb64.c" > - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\idea\i_ecb.c" > - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_attr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_asn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_utl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_add.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_crt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_key.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_crpt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_p8d.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\pk12err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_decr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_mutl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_kiss.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_p8e.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_init.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs12\p12_npas.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\seed\seed_ecb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\seed\seed_cbc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\seed\seed_ofb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\seed\seed.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\seed\seed_cfb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\conf\conf_mod.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\conf\conf_def.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\conf\conf_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\conf\conf_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\conf\conf_mall.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\conf\conf_sap.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\conf\conf_api.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ocsp\ocsp_ext.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ocsp\ocsp_asn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ocsp\ocsp_cl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ocsp\ocsp_vfy.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ocsp\ocsp_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ocsp\ocsp_srv.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ocsp\ocsp_ht.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ocsp\ocsp_prn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ocsp\ocsp_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\sha\sha256.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\sha\sha1_one.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\sha\sha512.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\sha\sha1dgst.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\sha\sha_dgst.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\sha\sha_one.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\mdc2\mdc2dgst.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\mdc2\mdc2_one.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\camellia\cmll_ctr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\camellia\cmll_misc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\camellia\cmll_cfb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\camellia\cmll_ofb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\camellia\cmll_ecb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\camellia\camellia.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\camellia\cmll_utl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\camellia\cmll_cbc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_req_utils.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_rsp_verify.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_rsp_print.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_rsp_sign.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_conf.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_verify_ctx.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_rsp_utils.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ts\ts_req_print.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\evp_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_sig.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\n_pkey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_object.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\d2i_pr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\tasn_new.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_attrib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_info.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\t_spki.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_long.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_time.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\tasn_typ.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\asn1_gen.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_utctm.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\tasn_prn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_bignum.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_bool.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\t_bitst.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\asn_pack.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_algor.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\t_crl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_pkey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_bytes.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\t_req.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_set.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\bio_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_utf8.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\asn1_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\asn_mime.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_x509.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_enum.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_strex.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_sign.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_int.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_strnid.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\nsseq.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\i2d_pu.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\tasn_dec.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\p5_pbe.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_dup.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_nx509.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\t_pkey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_exten.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_x509a.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_octet.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\p8_pkey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_mbstr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\f_string.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\d2i_pu.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\tasn_fre.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_crl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_digest.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\f_int.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_i2d_fp.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\asn1_par.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\f_enum.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\t_x509a.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_d2i_fp.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\tasn_utl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_gentm.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\ameth_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\asn1_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_bitstr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_print.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_req.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\p5_pbev2.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_type.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_spki.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\bio_ndef.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\a_verify.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_pubkey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_name.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\i2d_pr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\asn_moid.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\tasn_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\x_val.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\asn1\t_x509.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_pk8.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_info.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_seal.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_x509.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_oth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_all.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_pkey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_xaux.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pvkfmt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_sign.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pem\pem_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\lhash\lh_stats.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\lhash\lhash.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdsa\ecs_sign.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdsa\ecs_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdsa\ecs_ossl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdsa\ecs_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdsa\ecs_vrf.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ecdsa\ecs_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\store\str_err.c"> - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\store\str_mem.c"> - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\store\str_lib.c"> - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\store\str_meth.c"> - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_key.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_gen.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_pmeth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_vrf.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_ossl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_ameth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_prn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_depr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dsa\dsa_sign.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_openssl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_list.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_rsa.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_cipher.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_asnmth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_ctrl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_dh.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_cryptodev.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_table.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_dyn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_pkey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_dsa.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_fat.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_store.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_digest.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_init.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_pkmeth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_rand.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_all.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_ecdh.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_rdrand.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\eng_cnf.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\engine\tb_ecdsa.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bio_cb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\b_print.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bss_bio.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bss_sock.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bf_buff.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bss_mem.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bf_null.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bss_acpt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bss_file.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bio_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bio_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bss_null.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bss_log.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\b_sock.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bss_fd.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\b_dump.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bf_nbio.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bss_dgram.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bio\bss_conn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bf\bf_ecb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bf\bf_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bf\bf_skey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bf\bf_cfb64.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bf\bf_ofb64.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\whrlpool\wp_dgst.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\whrlpool\wp_block.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_ameth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_depr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_check.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_key.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_pmeth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_prn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_gen.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_kdf.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dh\dh_rfc5114.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_req.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_txt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\by_file.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_obj.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_vpm.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_d2.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_set.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509spki.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x_all.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509type.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_def.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_vfy.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_cmp.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_att.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_v3.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_lu.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_ext.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_r2x.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509rset.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\by_dir.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509name.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509_trs.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\x509\x509cset.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\comp\comp_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\comp\c_zlib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\comp\c_rle.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\comp\comp_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_gf2m.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_add.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_blind.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_kron.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_nist.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_gcd.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_word.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_mont.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_mod.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_exp2.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_exp.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_print.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_prime.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_mpi.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_sqrt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_mul.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_asm.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_x931p.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_recp.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_const.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_ctx.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_shift.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_sqr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_depr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_rand.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\bn\bn_div.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_depr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_pk1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_pmeth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_ssl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_crpt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_saos.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_gen.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_pss.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_none.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_null.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_x931.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_eay.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_sign.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_ameth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_oaep.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_chk.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rsa\rsa_prn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pqueue\pqueue.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\objects\o_names.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\objects\obj_xref.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\objects\obj_dat.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\objects\obj_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\objects\obj_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\buffer\buffer.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\buffer\buf_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\buffer\buf_str.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ecp_oct.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ecp_nistp224.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ecp_nist.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ecp_nistp256.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec2_mult.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_key.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_curve.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_ameth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\eck_prn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_oct.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec2_smpl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_check.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec2_oct.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ecp_smpl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ecp_nistputil.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_cvt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_pmeth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_mult.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ecp_mont.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ecp_nistp521.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ec\ec_print.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\md2\md2_dgst.c"> - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\md2\md2_one.c"> - <ExcludedFromBuild>true</ExcludedFromBuild> - </ClCompile> - <ClCompile Include="$(OpenSslPath)\crypto\dso\dso_vms.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dso\dso_beos.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dso\dso_dl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dso\dso_null.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dso\dso_openssl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dso\dso_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dso\dso_dlfcn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dso\dso_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\dso\dso_windows.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\stack\stack.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\md4\md4_dgst.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\md4\md4_one.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\md5\md5_one.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\md5\md5_dgst.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cmac\cm_ameth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cmac\cm_pmeth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cmac\cmac.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\aes\aes_wrap.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\aes\aes_cbc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\aes\aes_ige.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\aes\aes_ecb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\aes\aes_cfb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\aes\aes_ctr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\aes\aes_misc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\aes\aes_ofb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\aes\aes_core.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ripemd\rmd_dgst.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ripemd\rmd_one.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\modes\cbc128.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\modes\xts128.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\modes\ofb128.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\modes\ccm128.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\modes\cfb128.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\modes\ctr128.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\modes\cts128.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\modes\gcm128.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\modes\wrap128.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\err\err_all.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\err\err_prn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\err\err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rc4\rc4_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rc4\rc4_skey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rc4\rc4_utl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\set_key.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\des_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\cfb64enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\cbc_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\ofb_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\enc_writ.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\fcrypt_b.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\read2pwd.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\rpc_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\fcrypt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\ecb3_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\cbc_cksm.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\cfb_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\xcbc_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\ecb_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\enc_read.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\des_old.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\ofb64ede.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\str2key.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\cfb64ede.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\ofb64enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\des_old2.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\pcbc_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\qud_cksm.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\rand_key.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\des\ede_cbcm_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rc2\rc2ofb64.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rc2\rc2cfb64.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rc2\rc2_cbc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rc2\rc2_ecb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\rc2\rc2_skey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs7\pk7_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs7\pkcs7err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs7\pk7_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs7\pk7_mime.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs7\pk7_attr.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs7\pk7_smime.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs7\bio_pk7.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\pkcs7\pk7_doit.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cast\c_ofb64.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cast\c_skey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cast\c_cfb64.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cast\c_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cast\c_ecb.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\srp\srp_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\srp\srp_vfy.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ui\ui_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ui\ui_compat.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ui\ui_util.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ui\ui_openssl.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\ui\ui_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\bio_b64.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\evp_cnf.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_wp.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\evp_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\bio_ok.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_dss1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\p_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_md4.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_bf.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_rc4_hmac_md5.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\p_sign.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\c_all.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\p_seal.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\evp_pkey.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_ecdsa.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_aes_cbc_hmac_sha1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_sha.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\p5_crpt2.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_seed.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_sha1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_old.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_dss.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_cast.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_des.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_ripemd.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\pmeth_gn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_null.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_des3.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_rc2.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_rc4.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\bio_md.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_md5.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\p_open.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_mdc2.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\evp_pbe.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\c_allc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\p5_crpt.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\p_verify.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_null.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\evp_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\evp_acnf.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_xcbc_d.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\names.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_idea.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\encode.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_camellia.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_sigver.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\evp_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\p_dec.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\bio_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\digest.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\evp_key.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_aes.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\p_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\pmeth_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\m_md2.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\c_alld.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_rc5.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\e_aes_cbc_hmac_sha256.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\evp\pmeth_fn.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_io.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_cd.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_lib.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_att.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_enc.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_env.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_smime.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_dd.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_pwri.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_ess.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_sd.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_err.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\cms\cms_kari.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\hmac\hm_pmeth.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\hmac\hmac.c" /> - <ClCompile Include="$(OpenSslPath)\crypto\hmac\hm_ameth.c" /> - </ItemGroup> - <ItemGroup> - <ResourceCompile Include="$(OpenSslPath)\ms\version32.rc" /> - </ItemGroup> - <ItemGroup> - <None Include="packages.config" /> - </ItemGroup> - <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> - <Import Condition="exists('.\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.targets')" Project=".\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.targets" /> - <Import Condition="exists('.\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.targets')" Project=".\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.targets" /> - <ImportGroup Label="ExtensionTargets" /> - <PropertyGroup> - <Build-Perl-zlib Condition="'$(Linkage-zlib)'=='dynamic'">zlib-dynamic</Build-Perl-zlib> - <Build-Perl-zlib Condition="'$(Linkage-zlib)'=='static'">zlib</Build-Perl-zlib> - <Build-Perl-asm Condition="'$(NoASM)'=='true'">no-asm</Build-Perl-asm> - <Build-Perl-asm Condition="'$(NoASM)'=='false'"></Build-Perl-asm> - <Build-Perl-platform Condition="'$(Platform)'=='Win32'">VC-WIN32</Build-Perl-platform> - <Build-Perl-platform Condition="'$(Platform)'=='x64'">VC-WIN64A</Build-Perl-platform> - <Build-Perl-dll Condition="'$(ConfigurationType)'=='DynamicLibrary'">shared</Build-Perl-dll> - <Build-Perl-dll Condition="'$(ConfigurationType)'=='StaticLibrary'">no-shared</Build-Perl-dll> - </PropertyGroup> - <Target Name="PerlDefs"> - <Exec - Command=" - perl Configure no-rc5 no-idea enable-mdc2 threads $(Build-Perl-zlib) $(Build-Perl-dll) $(Build-Perl-asm) $(Build-Perl-platform) - perl util\mkfiles.pl >MINFO - perl .\util\mkdef.pl 32 libeay >..\..\vsprojects\coapp\openssl\libeay32.def - " - WorkingDirectory="$(MSBuildThisFileDirectory)$(OpenSslPath)\" /> - <Copy - SourceFiles="$(MSBuildThisFileDirectory)$(OpenSslPath)\crypto\opensslconf.h" - DestinationFolder="$(OutDir)Include\openssl\" /> - </Target> - <PropertyGroup> - <AA1 Condition="( $(PlatformToolset.ToLower().IndexOf('v110')) > -1 Or '$(PlatformToolset.ToLower())' == 'windowskernelmodedriver8.0' Or '$(PlatformToolset.ToLower())' == 'windowsapplicationfordrivers8.0' Or '$(PlatformToolset.ToLower())' == 'windowsusermodedriver8.0' )">true</AA1> - <AA2 Condition="'$(Platform.ToLower())' == 'win32'">true</AA2> - <AA3 Condition="( $(Configuration.ToLower().IndexOf('debug')) == -1 )">true</AA3> - <AA4 Condition="'$(Linkage-zlib.ToLower())' == 'dynamic'">true</AA4> - <AA5 Condition="'$(CallingConvention-zlib.ToLower())' == 'cdecl'">true</AA5> - </PropertyGroup> - <Target Name="Info2" BeforeTargets="Build"> - <Message Text="*******************************************************************************" Importance="high" /> - <Message Text="* PlatformToolset : '$(AA1)'" Importance="high" /> - <Message Text="* Platform : '$(AA2)'" Importance="high" /> - <Message Text="* Configuration : '$(AA3)'" Importance="high" /> - <Message Text="* Linkage : '$(AA4)'" Importance="high" /> - <Message Text="* CallingConv : '$(AA5)'" Importance="high" /> - <Message Text="*******************************************************************************" Importance="high" /> - <MakeDir Directories="$(OutDir);$(IntDir);$(TargetDir)"/> - </Target> - <PropertyGroup> - <BuildDependsOn>Info2;PerlDefs;$(BuildDependsOn)</BuildDependsOn> - </PropertyGroup> -</Project>
\ No newline at end of file diff --git a/vsprojects/coapp/openssl/managed_targets/grpc.dependencies.openssl.redist.targets b/vsprojects/coapp/openssl/managed_targets/grpc.dependencies.openssl.redist.targets deleted file mode 100644 index 6ee46ba3bc..0000000000 --- a/vsprojects/coapp/openssl/managed_targets/grpc.dependencies.openssl.redist.targets +++ /dev/null @@ -1,44 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <!-- - Whether or not to copy native dependencies to output directory as part of build. - If not explicitly specified in the project file, this defaults to true on Windows - and false on Unix systems. - --> - <CopyNativeDependencies Condition=" '$(CopyNativeDependencies)' == '' And '$(OS)' != 'Unix' ">true</CopyNativeDependencies> - <CopyNativeDependencies Condition=" '$(CopyNativeDependencies)' == '' And '$(OS)' == 'Unix' ">false</CopyNativeDependencies> - - <!-- - Select which platform toolset of native dependencies to use based on VS version (v120 is the default). - Value can be explicitly specified in the project file. - --> - <NativeDependenciesToolset Condition=" '$(NativeDependenciesToolset)' == '' And '$(VisualStudioVersion)' == '14.0' ">v140</NativeDependenciesToolset> - <NativeDependenciesToolset Condition=" '$(NativeDependenciesToolset)' == '' And '$(VisualStudioVersion)' == '10.0' ">v100</NativeDependenciesToolset> - <NativeDependenciesToolset Condition=" '$(NativeDependenciesToolset)' == '' ">v120</NativeDependenciesToolset> - - <!-- Select which platform of native dependencies to use. Value can be explicitly specified in the project file. --> - <NativeDependenciesPlatform Condition=" '$(NativeDependenciesPlatform)' == '' ">Win32</NativeDependenciesPlatform> - - <!-- - Select which configuration of native dependencies to use. Uses release build if project configuration is Release, - otherwise defaults to Debug. Value can be explicitly specified in the project file. - --> - <NativeDependenciesConfiguration Condition=" '$(NativeDependenciesConfiguration)' == '' And '$(Configuration)' == 'Release' ">Release</NativeDependenciesConfiguration> - <NativeDependenciesConfiguration Condition=" '$(NativeDependenciesConfiguration)' == '' ">Debug</NativeDependenciesConfiguration> - </PropertyGroup> - <Choose> - <!-- Under older versions of Monodevelop, Choose is not supported and is just ignored, which gives us the desired effect. --> - <When Condition=" '$(CopyNativeDependencies)' == 'true' "> - <ItemGroup> - <Content Include="$(MSBuildThisFileDirectory)..\..\build\native\bin\$(NativeDependenciesToolset)\$(NativeDependenciesPlatform)\$(NativeDependenciesConfiguration)\dynamic\libeay32.dll"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </Content> - <Content Include="$(MSBuildThisFileDirectory)..\..\build\native\bin\$(NativeDependenciesToolset)\$(NativeDependenciesPlatform)\$(NativeDependenciesConfiguration)\dynamic\ssleay32.dll"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </Content> - </ItemGroup> - </When> - <Otherwise /> - </Choose> -</Project>
\ No newline at end of file diff --git a/vsprojects/coapp/openssl/openssl.sln b/vsprojects/coapp/openssl/openssl.sln deleted file mode 100644 index 7825f18b8e..0000000000 --- a/vsprojects/coapp/openssl/openssl.sln +++ /dev/null @@ -1,39 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libeay32", "libeay32.vcxproj", "{BE42CA67-7C48-4882-BE59-111CB41142BE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ssleay32", "ssleay32.vcxproj", "{7E05608D-A775-418F-946A-E9A0B84C6DFF}" - ProjectSection(ProjectDependencies) = postProject - {BE42CA67-7C48-4882-BE59-111CB41142BE} = {BE42CA67-7C48-4882-BE59-111CB41142BE} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {BE42CA67-7C48-4882-BE59-111CB41142BE}.Debug|Win32.ActiveCfg = Debug|Win32 - {BE42CA67-7C48-4882-BE59-111CB41142BE}.Debug|Win32.Build.0 = Debug|Win32 - {BE42CA67-7C48-4882-BE59-111CB41142BE}.Debug|x64.ActiveCfg = Debug|x64 - {BE42CA67-7C48-4882-BE59-111CB41142BE}.Debug|x64.Build.0 = Debug|x64 - {BE42CA67-7C48-4882-BE59-111CB41142BE}.Release|Win32.ActiveCfg = Release|Win32 - {BE42CA67-7C48-4882-BE59-111CB41142BE}.Release|Win32.Build.0 = Release|Win32 - {BE42CA67-7C48-4882-BE59-111CB41142BE}.Release|x64.ActiveCfg = Release|x64 - {BE42CA67-7C48-4882-BE59-111CB41142BE}.Release|x64.Build.0 = Release|x64 - {7E05608D-A775-418F-946A-E9A0B84C6DFF}.Debug|Win32.ActiveCfg = Debug|Win32 - {7E05608D-A775-418F-946A-E9A0B84C6DFF}.Debug|Win32.Build.0 = Debug|Win32 - {7E05608D-A775-418F-946A-E9A0B84C6DFF}.Debug|x64.ActiveCfg = Debug|x64 - {7E05608D-A775-418F-946A-E9A0B84C6DFF}.Debug|x64.Build.0 = Debug|x64 - {7E05608D-A775-418F-946A-E9A0B84C6DFF}.Release|Win32.ActiveCfg = Release|Win32 - {7E05608D-A775-418F-946A-E9A0B84C6DFF}.Release|Win32.Build.0 = Release|Win32 - {7E05608D-A775-418F-946A-E9A0B84C6DFF}.Release|x64.ActiveCfg = Release|x64 - {7E05608D-A775-418F-946A-E9A0B84C6DFF}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/vsprojects/coapp/openssl/packages.config b/vsprojects/coapp/openssl/packages.config deleted file mode 100644 index 2d4749d069..0000000000 --- a/vsprojects/coapp/openssl/packages.config +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<packages> - <package id="grpc.dependencies.zlib" version="1.2.8.10" targetFramework="Native" /> - <package id="grpc.dependencies.zlib.redist" version="1.2.8.10" targetFramework="Native" /> -</packages>
\ No newline at end of file diff --git a/vsprojects/coapp/openssl/ssleay32.vcxproj b/vsprojects/coapp/openssl/ssleay32.vcxproj deleted file mode 100644 index 3ed1361d99..0000000000 --- a/vsprojects/coapp/openssl/ssleay32.vcxproj +++ /dev/null @@ -1,240 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <ItemGroup Label="ProjectConfigurations"> - <ProjectConfiguration Include="Debug|Win32"> - <Configuration>Debug</Configuration> - <Platform>Win32</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="Release|Win32"> - <Configuration>Release</Configuration> - <Platform>Win32</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="Debug|x64"> - <Configuration>Debug</Configuration> - <Platform>x64</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="Release|x64"> - <Configuration>Release</Configuration> - <Platform>x64</Platform> - </ProjectConfiguration> - </ItemGroup> - <PropertyGroup> - <OpenSslPath>..\..\..\third_party\openssl</OpenSslPath> - </PropertyGroup> - <PropertyGroup Label="Globals"> - <ProjectGuid>{7E05608D-A775-418F-946A-E9A0B84C6DFF}</ProjectGuid> - <Keyword>Win32Proj</Keyword> - <RootNamespace>$(LibName)</RootNamespace> - </PropertyGroup> - <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> - <PropertyGroup Label="ConfigurationSettings"> - <ConfigurationType>DynamicLibrary</ConfigurationType> - <PlatformToolset>v110</PlatformToolset> - <CallingConvention>Cdecl</CallingConvention> - <OutputPath>output\$(PlatformToolset)\$(Platform)\$(Configuration)\$(UsesConfigurationType)\</OutputPath> - <OutDir>$(OutputPath)</OutDir> - </PropertyGroup> - <Import Project="$(CoAppEtcDirectory)vcxproj.inc" Condition="Exists('$(CoAppEtcDirectory)vcxproj.inc')" /> - <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> - <Import Condition="exists('.\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.props')" Project=".\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.props" /> - <Import Condition="exists('.\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.props')" Project=".\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.props" /> - <ImportGroup Label="ExtensionSettings" /> - <ImportGroup Label="PropertySheets"> - <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" /> - </ImportGroup> - <PropertyGroup Label="UserMacros" /> - <PropertyGroup> - <LinkIncremental Condition="'$(Configuration)'=='Release'">false</LinkIncremental> - <LinkIncremental Condition="'$(Configuration)'=='Debug'">true</LinkIncremental> - <CallingConvention-zlib>$(CallingConvention)</CallingConvention-zlib> - <Linkage-zlib>$(UsesConfigurationType)</Linkage-zlib> - </PropertyGroup> - <ItemDefinitionGroup> - <ClCompile> - <AdditionalIncludeDirectories>$(OpenSslPath);$(OpenSslPath)\inc32;$(OpenSslPath)\crypto;$(OpenSslPath)\include;$(OutDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <BufferSecurityCheck>true</BufferSecurityCheck> - <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> - <!-- <PreprocessorDefinitions>OPENSSL_USE_APPLINK;%(PreprocessorDefinitions)</PreprocessorDefinitions> --> - <!-- <PreprocessorDefinitions>BUILDING_V8_SHARED=1;BUILDING_UV_SHARED=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> --> - <!-- <PreprocessorDefinitions>OPENSSL_EXPORT_VAR_AS_FUNCTION;PURIFY;%(PreprocessorDefinitions)</PreprocessorDefinitions> --> - <PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;L_ENDIAN;MK1MF_BUILD;WIN32_LEAN_AND_MEAN;OPENSSL_THREADS;ZLIB;OPENSSL_SYSNAME_WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>OPENSSL_BUILD_SHLIBSSL;OPENSSL_NO_IDEA;OPENSSL_NO_RC5;OPENSSL_NO_MD2;OPENSSL_NO_KRB5;OPENSSL_NO_JPAKE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>DSO_WIN32;UNICODE;_UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(ConfigurationType)'=='DynamicLibrary'">_WINDLL;_REENTRANT;OPENSSL_NO_STATIC_ENGINE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(ConfigurationType)'=='StaticLibrary'">OPENSSL_NO_DYNAMIC_ENGINE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(Linkage-zlib)'=='dynamic'">ZLIB_SHARED;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>OPENSSL_NO_ASM;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <CallingConvention>%(CallingConvention)</CallingConvention> - <StringPooling>true</StringPooling> - <SuppressStartupBanner>true</SuppressStartupBanner> - <TreatWarningAsError>false</TreatWarningAsError> - <WarningLevel>Level3</WarningLevel> - </ClCompile> - <Lib> - <SuppressStartupBanner>true</SuppressStartupBanner> - <IgnoreAllDefaultLibraries>true</IgnoreAllDefaultLibraries> - <!-- - <IgnoreSpecificDefaultLibraries>zlib$(OutNameSuffix).lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries> - --> - </Lib> - <Link> - <AllowIsolation>true</AllowIsolation> - <DataExecutionPrevention>true</DataExecutionPrevention> - <GenerateDebugInformation>true</GenerateDebugInformation> - <RandomizedBaseAddress>true</RandomizedBaseAddress> - <SuppressStartupBanner>true</SuppressStartupBanner> - <AdditionalDependencies>ws2_32.lib;crypt32.lib;libeay32$(OutNameSuffix).lib;%(AdditionalDependencies)</AdditionalDependencies> - <AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories> - <ModuleDefinitionFile>.\ssleay32.def</ModuleDefinitionFile> - </Link> - <ResourceCompile> - <AdditionalIncludeDirectories>$(OpenSslPath);$(OpenSslPath)\inc32;$(OpenSslPath)\crypto;$(OpenSslPath)\include;$(OutDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;L_ENDIAN;MK1MF_BUILD;WIN32_LEAN_AND_MEAN;OPENSSL_THREADS;ZLIB;OPENSSL_SYSNAME_WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>OPENSSL_BUILD_SHLIBSSL;OPENSSL_NO_IDEA;OPENSSL_NO_RC5;OPENSSL_NO_MD2;OPENSSL_NO_KRB5;OPENSSL_NO_JPAKE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>DSO_WIN32;UNICODE;_UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(ConfigurationType)'=='DynamicLibrary'">_WINDLL;_REENTRANT;OPENSSL_NO_STATIC_ENGINE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(ConfigurationType)'=='StaticLibrary'">OPENSSL_NO_DYNAMIC_ENGINE;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions Condition="'$(Linkage-zlib)'=='dynamic'">ZLIB_SHARED;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>OPENSSL_NO_ASM;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <PreprocessorDefinitions>SSL;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> - <ClCompile> - <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> - <ExceptionHandling>Sync</ExceptionHandling> - <MinimalRebuild>false</MinimalRebuild> - <OmitFramePointers>false</OmitFramePointers> - <Optimization>Disabled</Optimization> - <PreprocessorDefinitions>DEBUG;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ClCompile> - <ResourceCompile> - <PreprocessorDefinitions>DEBUG;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> - <ClCompile> - <AdditionalOptions>/MP %(AdditionalOptions)</AdditionalOptions> - <ExceptionHandling>false</ExceptionHandling> - <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed> - <FunctionLevelLinking>true</FunctionLevelLinking> - <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion> - <IntrinsicFunctions>true</IntrinsicFunctions> - <OmitFramePointers>true</OmitFramePointers> - <Optimization>Full</Optimization> - <RuntimeTypeInfo>false</RuntimeTypeInfo> - <WholeProgramOptimization>true</WholeProgramOptimization> - </ClCompile> - <Link> - <EnableCOMDATFolding>true</EnableCOMDATFolding> - <LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration> - <OptimizeReferences>true</OptimizeReferences> - </Link> - <ResourceCompile> - </ResourceCompile> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Platform)'=='Win32'"> - <ClCompile> - <PreprocessorDefinitions>WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">MultiThreadedDebug</RuntimeLibrary> - <RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">MultiThreaded</RuntimeLibrary> - </ClCompile> - <ResourceCompile> - <PreprocessorDefinitions>WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Platform)'=='x64'"> - <ClCompile> - <PreprocessorDefinitions>WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> - <RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">MultiThreadedDebug</RuntimeLibrary> - <RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Release|x64'">MultiThreaded</RuntimeLibrary> - </ClCompile> - <ResourceCompile> - <PreprocessorDefinitions>WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> - </ResourceCompile> - </ItemDefinitionGroup> - <ItemGroup> - <None Include="openssl.gyp" /> - </ItemGroup> - <ItemGroup> - <ClCompile Include="$(OpenSslPath)\ssl\s2_pkt.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s3_enc.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s23_pkt.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\t1_meth.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_lib.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_asn1.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s23_lib.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\tls_srp.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_txt.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_algs.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s23_srvr.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\d1_both.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s3_meth.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_err2.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\bio_ssl.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s2_meth.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s3_clnt.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s3_lib.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\kssl.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\t1_enc.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\d1_clnt.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\t1_lib.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\t1_srvr.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_cert.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\t1_clnt.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_stat.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_sess.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s3_both.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\d1_srtp.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\d1_pkt.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s23_clnt.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s2_lib.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\t1_reneg.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s2_enc.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_rsa.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s23_meth.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\d1_lib.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_ciph.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s2_srvr.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_err.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_utst.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s2_clnt.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s3_pkt.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\d1_srvr.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s3_srvr.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\s3_cbc.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\d1_meth.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\ssl_conf.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\t1_ext.c" /> - <ClCompile Include="$(OpenSslPath)\ssl\t1_trce.c" /> - </ItemGroup> - <ItemGroup> - <ResourceCompile Include="$(OpenSslPath)\ms\version32.rc" /> - </ItemGroup> - <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> - <Import Condition="exists('.\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.targets')" Project=".\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.targets" /> - <Import Condition="exists('.\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.targets')" Project=".\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.targets" /> - <ImportGroup Label="ExtensionTargets" /> - <PropertyGroup> - <Build-Perl-zlib Condition="'$(Linkage-zlib)'=='dynamic'">zlib-dynamic</Build-Perl-zlib> - <Build-Perl-zlib Condition="'$(Linkage-zlib)'=='static'">zlib</Build-Perl-zlib> - <Build-Perl-asm Condition="'$(NoASM)'=='true'">no-asm</Build-Perl-asm> - <Build-Perl-asm Condition="'$(NoASM)'=='false'"></Build-Perl-asm> - <Build-Perl-platform Condition="'$(Platform)'=='Win32'">VC-WIN32</Build-Perl-platform> - <Build-Perl-platform Condition="'$(Platform)'=='x64'">VC-WIN64A</Build-Perl-platform> - <Build-Perl-dll Condition="'$(ConfigurationType)'=='DynamicLibrary'">shared</Build-Perl-dll> - <Build-Perl-dll Condition="'$(ConfigurationType)'=='StaticLibrary'">no-shared</Build-Perl-dll> - </PropertyGroup> - <Target Name="PerlDefs"> - <Exec - Command=" - perl Configure no-rc5 no-idea enable-mdc2 threads $(Build-Perl-zlib) $(Build-Perl-dll) $(Build-Perl-asm) $(Build-Perl-platform) - perl util\mkfiles.pl >MINFO - perl .\util\mkdef.pl 32 ssleay >..\..\vsprojects\coapp\openssl\ssleay32.def - " - WorkingDirectory="$(MSBuildThisFileDirectory)$(OpenSslPath)\" /> - </Target> - <PropertyGroup> - <BuildDependsOn>PerlDefs;$(BuildDependsOn)</BuildDependsOn> - </PropertyGroup> -</Project>
\ No newline at end of file diff --git a/vsprojects/coapp/openssl/version.inc b/vsprojects/coapp/openssl/version.inc deleted file mode 100644 index aa801bea5b..0000000000 --- a/vsprojects/coapp/openssl/version.inc +++ /dev/null @@ -1 +0,0 @@ -#define { package-version: 1.0.204.1; } diff --git a/vsprojects/coapp/zlib/.gitignore b/vsprojects/coapp/zlib/.gitignore deleted file mode 100644 index 7c93b345a3..0000000000 --- a/vsprojects/coapp/zlib/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -*.nupkg -/nuget.exe -/Intermediate -/Output - diff --git a/vsprojects/coapp/zlib/README.md b/vsprojects/coapp/zlib/README.md deleted file mode 100644 index e9a89c030e..0000000000 --- a/vsprojects/coapp/zlib/README.md +++ /dev/null @@ -1,36 +0,0 @@ -Zlib Native Nuget package -------------------------- - -Uses [CoApp](http://coapp.org/) project to build the zlib package. - -Prerequisites -------------- -Multiple versions of VS installed to be able to build all the targets: -* Visual Studio 2015 -* Visual Studio 2013 -* Visual Studio 2010 (you might need SP1 to prevent LNK1123 error) - -CoApp toolkit: http://coapp.org/files/CoApp.Tools.Powershell.msi - -More details on installation: http://coapp.org/tutorials/installation.html - -Building --------- - -Build all flavors of zlib library using the provided batch file. -``` -buildall.bat -``` - -Then, create NuGet package using powershell (you'll need the CoApp toolkit installed): -``` -[THIS_DIRECTORY]> Write-NuGetPackage grpc.dependencies.zlib.autopkg -``` - -This will create three NuGet packages: -* the main dev package -* the redistributable package that contains just the binaries and no headers -* the symbols package (debug symbols) - -Later, you can push the package to NuGet.org repo. -Attention: before pusing the resulting nuget package to public nuget repo, you have to be 100% sure it works correctly - there’s no way how to delete or update an already existing package. diff --git a/vsprojects/coapp/zlib/buildall.bat b/vsprojects/coapp/zlib/buildall.bat deleted file mode 100644 index 6780e449ad..0000000000 --- a/vsprojects/coapp/zlib/buildall.bat +++ /dev/null @@ -1,77 +0,0 @@ -@rem Copyright 2016 gRPC authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem http://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. - -@echo off -setlocal - -REM setlocal -REM call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" amd64 -REM call :build x64 Release v100 || goto :eof -REM call :build x64 Debug v100 || goto :eof -REM endlocal - -setlocal -call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86 -call :build Win32 Release v100 || goto :eof -call :build Win32 Debug v100 || goto :eof -endlocal - -setlocal -call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 -call :build x64 Release v140 || goto :eof -call :build x64 Debug v140 || goto :eof -endlocal - -setlocal -call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86 -call :build Win32 Release v140 || goto :eof -call :build Win32 Debug v140 || goto :eof -endlocal - -setlocal -call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64 -call :build x64 Release v120 || goto :eof -call :build x64 Debug v120 || goto :eof -endlocal - -setlocal -call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86 -call :build Win32 Release v120 || goto :eof -call :build Win32 Debug v120 || goto :eof -endlocal - -REM setlocal -REM call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" amd64 -REM call :build x64 Release v110 || goto :eof -REM call :build x64 Debug v110 || goto :eof -REM endlocal - -REM setlocal -REM call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" x86 -REM call :build Win32 Release v110 || goto :eof -REM call :build Win32 Debug v110 || goto :eof -REM endlocal - -goto :eof - -:build -msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesConfigurationType=Dynamic /P:CallingConvention=cdecl .\zlib.sln || goto :eof -msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesConfigurationType=Dynamic /P:CallingConvention=stdcall .\zlib.sln || goto :eof -msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesConfigurationType=Static /P:CallingConvention=cdecl .\zlib.sln || goto :eof -msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesConfigurationType=Static /P:CallingConvention=stdcall .\zlib.sln || goto :eof -msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesConfigurationType=ltcg /P:CallingConvention=cdecl .\zlib.sln || goto :eof -msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesConfigurationType=ltcg /P:CallingConvention=stdcall .\zlib.sln || goto :eof -goto :eof - - diff --git a/vsprojects/coapp/zlib/grpc.dependencies.zlib.autopkg b/vsprojects/coapp/zlib/grpc.dependencies.zlib.autopkg deleted file mode 100644 index 9dcc43aef3..0000000000 --- a/vsprojects/coapp/zlib/grpc.dependencies.zlib.autopkg +++ /dev/null @@ -1,108 +0,0 @@ -@import @"version.inc"; - -configurations -{ - // See https://github.com/coapp/coapp.powershell/issues/112 - Toolset - { - key : "PlatformToolset"; // this is CoApp pre-defined key - choices: { v140, v120, v110, v100 }; - }; -} - -#define { - package-id = "grpc.dependencies.zlib"; -} - -nuget { - // the nuspec file metadata. Gets created/updated on build - nuspec { - id = ${package-id}; - version : ${package-version}; - title: gRPC Native Dependency: ZLib compression library; - authors: {Jean-loup Gailly, Mark Adler, Garrett Serack, Tim Rogers}; - owners: {Jan Tattermusch}; - licenseUrl: "http://zlib.net/zlib-license.html"; - projectUrl: "http://github.com/grpc/grpc"; - iconUrl: "http://zlib.net/images/zlib3d-b1.png"; - requireLicenseAcceptance:false; - summary:A zlib library; - description: @"A native zlib library. - zlib homepage: http://zlib.net"; - releaseNotes: "Release of zlib 1.2.8 libraries."; - copyright: Copyright 2013; - tags: { zlib, native, CoApp }; - - }; - - // the files that go into the content folders - // (inserted into the nuspec file) - files { - // .targets file that are applied when redist package is installed from a managed project. - managed_build: { - #output { - package = redist; - }; - #destination = "\build\portable-net45+netcore45+wpa81+wp8"; - "managed_targets\${package-id}.redist.targets"; - }; - - include: { ..\..\..\third_party\zlib\zlib.h, ..\..\..\third_party\zlib\zconf.h }; - - docs: { ..\..\..\third_party\zlib\doc\**\* }; - - source += { - "..\..\..\third_party\zlib\adler32.c", - "..\..\..\third_party\zlib\compress.c", - "..\..\..\third_party\zlib\crc32.c", - "..\..\..\third_party\zlib\deflate.c", - "..\..\..\third_party\zlib\gzclose.c", - "..\..\..\third_party\zlib\gzlib.c", - "..\..\..\third_party\zlib\gzread.c", - "..\..\..\third_party\zlib\gzwrite.c", - "..\..\..\third_party\zlib\infback.c", - "..\..\..\third_party\zlib\inffast.c", - "..\..\..\third_party\zlib\inflate.c", - "..\..\..\third_party\zlib\inftrees.c", - "..\..\..\third_party\zlib\trees.c", - "..\..\..\third_party\zlib\uncompr.c", - "..\..\..\third_party\zlib\zutil.c", - "..\..\..\third_party\zlib\crc32.h", - "..\..\..\third_party\zlib\deflate.h", - "..\..\..\third_party\zlib\gzguts.h", - "..\..\..\third_party\zlib\inffast.h", - "..\..\..\third_party\zlib\inffixed.h", - "..\..\..\third_party\zlib\inflate.h", - "..\..\..\third_party\zlib\inftrees.h", - "..\..\..\third_party\zlib\trees.h", - "..\..\..\third_party\zlib\zconf.h", - "..\..\..\third_party\zlib\zlib.h", - "..\..\..\third_party\zlib\zutil.h", - "..\..\..\third_party\zlib\contrib\masmx64\inffas8664.c", - }; - ("v100,v120,v140", "Win32,x64", "Release,Debug", "Dynamic", "cdecl,stdcall", "MultiByte") => { - [${0},${1},${2},${3},${4}] { - lib: { .\output\${0}\${1}\${2}\${3}\${4}\${5}\*.lib }; - bin: { .\output\${0}\${1}\${2}\${3}\${4}\${5}\*.dll }; - symbols: { .\output\${0}\${1}\${2}\${3}\${4}\${5}\*.pdb }; - }; - }; - ("v100,v120,v140", "Win32,x64", "Release,Debug", "Static,ltcg", "cdecl,stdcall", "MultiByte") => { - [${0},${1},${2},${3},${4}] { - lib: { .\output\${0}\${1}\${2}\${3}\${4}\${5}\*.lib }; - }; - }; - - }; - - // the VC++ .targets file that gets generated and inserted into the ${d_content} folder - targets { - Defines += HAS_ZLIB; - [dynamic] - Defines += ZLIB_DLL; - [stdcall] - Defines += ZLIB_WINAPI; - - }; -} - diff --git a/vsprojects/coapp/zlib/managed_targets/grpc.dependencies.zlib.redist.targets b/vsprojects/coapp/zlib/managed_targets/grpc.dependencies.zlib.redist.targets deleted file mode 100644 index 03002d0727..0000000000 --- a/vsprojects/coapp/zlib/managed_targets/grpc.dependencies.zlib.redist.targets +++ /dev/null @@ -1,43 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <!-- - Whether or not to copy native dependencies to output directory as part of build. - If not explicitly specified in the project file, this defaults to true on Windows - and false on Unix systems. - --> - <CopyNativeDependencies Condition=" '$(CopyNativeDependencies)' == '' And '$(OS)' != 'Unix' ">true</CopyNativeDependencies> - <CopyNativeDependencies Condition=" '$(CopyNativeDependencies)' == '' And '$(OS)' == 'Unix' ">false</CopyNativeDependencies> - - <!-- - Select which platform toolset of native dependencies to use based on VS version (v120 is the default). - Value can be explicitly specified in the project file. - --> - <NativeDependenciesToolset Condition=" '$(NativeDependenciesToolset)' == '' And '$(VisualStudioVersion)' == '14.0' ">v140</NativeDependenciesToolset> - <NativeDependenciesToolset Condition=" '$(NativeDependenciesToolset)' == '' And '$(VisualStudioVersion)' == '10.0' ">v100</NativeDependenciesToolset> - <NativeDependenciesToolset Condition=" '$(NativeDependenciesToolset)' == '' ">v120</NativeDependenciesToolset> - - <!-- Select which platform of native dependencies to use. Value can be explicitly specified in the project file. --> - <NativeDependenciesPlatform Condition=" '$(NativeDependenciesPlatform)' == '' ">Win32</NativeDependenciesPlatform> - - <!-- - Select which configuration of native dependencies to use. Uses release build if project configuration is Release, - otherwise defaults to Debug. Value can be explicitly specified in the project file. - --> - <NativeDependenciesConfiguration Condition=" '$(NativeDependenciesConfiguration)' == '' And '$(Configuration)' == 'Release' ">Release</NativeDependenciesConfiguration> - <NativeDependenciesConfiguration Condition=" '$(NativeDependenciesConfiguration)' == '' ">Debug</NativeDependenciesConfiguration> - - <ZlibCallingConvention Condition=" '$(ZlibCallingConvention)' == '' ">cdecl</ZlibCallingConvention> - </PropertyGroup> - <Choose> - <!-- Under older versions of Monodevelop, Choose is not supported and is just ignored, which gives us the desired effect. --> - <When Condition=" '$(CopyNativeDependencies)' == 'true' "> - <ItemGroup> - <Content Include="$(MSBuildThisFileDirectory)..\..\build\native\bin\$(NativeDependenciesToolset)\$(NativeDependenciesPlatform)\$(NativeDependenciesConfiguration)\dynamic\$(ZlibCallingConvention)\zlib.dll"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </Content> - </ItemGroup> - </When> - <Otherwise /> - </Choose> -</Project>
\ No newline at end of file diff --git a/vsprojects/coapp/zlib/version.inc b/vsprojects/coapp/zlib/version.inc deleted file mode 100644 index fd1a8cf773..0000000000 --- a/vsprojects/coapp/zlib/version.inc +++ /dev/null @@ -1 +0,0 @@ -#define { package-version : 1.2.8.10; } diff --git a/vsprojects/coapp/zlib/zlib.sln b/vsprojects/coapp/zlib/zlib.sln deleted file mode 100644 index 7c38e6e121..0000000000 --- a/vsprojects/coapp/zlib/zlib.sln +++ /dev/null @@ -1,26 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "zlib.vcxproj", "{63BED288-E8C3-4345-B84D-2E64598DCF3A}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - Debug|x64 = Debug|x64 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {63BED288-E8C3-4345-B84D-2E64598DCF3A}.Debug|Win32.ActiveCfg = Debug|Win32 - {63BED288-E8C3-4345-B84D-2E64598DCF3A}.Debug|Win32.Build.0 = Debug|Win32 - {63BED288-E8C3-4345-B84D-2E64598DCF3A}.Release|Win32.ActiveCfg = Release|Win32 - {63BED288-E8C3-4345-B84D-2E64598DCF3A}.Release|Win32.Build.0 = Release|Win32 - {63BED288-E8C3-4345-B84D-2E64598DCF3A}.Debug|x64.ActiveCfg = Debug|x64 - {63BED288-E8C3-4345-B84D-2E64598DCF3A}.Debug|x64.Build.0 = Debug|x64 - {63BED288-E8C3-4345-B84D-2E64598DCF3A}.Release|x64.ActiveCfg = Release|x64 - {63BED288-E8C3-4345-B84D-2E64598DCF3A}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/vsprojects/coapp/zlib/zlib.vcxproj b/vsprojects/coapp/zlib/zlib.vcxproj deleted file mode 100644 index 56df39a248..0000000000 --- a/vsprojects/coapp/zlib/zlib.vcxproj +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project DefaultTargets="PreBuildCmds;PreBuildTargets;Build;PostBuildCmds;PostBuildTargets" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup Label="CoApp" > - <CoAppEtcDirectory>$(registry:HKEY_LOCAL_MACHINE\Software\Outercurve\CoApp.Powershell\etc)</CoAppEtcDirectory> - - <!-- Set to true to make visual studio use PTK when building.--> - <UsePTKFromVisualStudio>false</UsePTKFromVisualStudio> - </PropertyGroup> - - <PropertyGroup Label="Configuration" > - <!-- This lets Visual Studio see this as a VC12 project by default --> - <PlatformToolset Condition="'$(PlatformToolset)' == ''">v120</PlatformToolset> - </PropertyGroup> - - <Import Condition="Exists('$(CoAppEtcDirectory)\common-variables.vcxproj')" Project="$(CoAppEtcDirectory)\common-variables.vcxproj" /> - - <PropertyGroup Label="CustomSettings" /> - - <PropertyGroup Label="Globals"> - <ProjectGuid>{63BED288-E8C3-4345-B84D-2E64598DCF3A}</ProjectGuid> - <RootNamespace>$(MSBuildProjectName)</RootNamespace> - - <OutNameSuffix Condition="$(IS_CDECL) AND $(IS_DYNAMIC)">1</OutNameSuffix> - - <!-- set to Application or DynamicLibrary (DynamicLibrary can get altered to StaticLibrary by PTK --> - <ConfigurationType>DynamicLibrary</ConfigurationType> - - <!-- Common Compiler Defines (semicolon delimited) --> - <Defines>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;</Defines> - <Defines Condition="$(IS_STDCALL)">$(Defines);ZLIB_WINAPI;</Defines> - <Defines Condition="$(IS_DYNAMIC)">$(Defines);ZLIB_DLL;</Defines> - <Defines Condition="'$(AppContainer)' == 'App'">$(Defines);IOWIN32_USING_WINRT_API=1;</Defines> - <Defines Condition="'$(AppContainer)' != 'App'">$(Defines);IOWIN32_USING_WINRT_API=0;</Defines> - <Defines Condition="'$(UseASM)' == 'ASM'">$(Defines);ASMV;ASMINF;</Defines> - <Defines Condition="$(IS_X64)">$(Defines);WIN64;</Defines> - - <!-- Additional Include folders (semicolon delimited) --> - <IncludeDirectories>..\..\..\third_party\zlib;</IncludeDirectories> - - <!-- Additional Library folders (semicolon delimited) --> - <LibraryDirectories></LibraryDirectories> - - <!-- Libraries to Link with --> - <Libraries></Libraries> - - <!-- Batch script to run before Build--> - <PreBuild></PreBuild> - - <!-- Batch script to run after Build--> - <PostBuild></PostBuild> - - <!-- Batch script to run before Link step--> - <PreLink></PreLink> - - <!-- Batch script to run after Link--> - <PostLink></PostLink> - - <!-- Batch script to run before Lib step--> - <PreLib></PreLib> - - <!-- Batch script to run after Lib--> - <PostLib></PostLib> - - <!-- Targets to run before Build (semcolon delimited)--> - <PreBuildTargets></PreBuildTargets> - - <!-- Targets to run before Build (semcolon delimited)--> - <PostBuildTargets></PostBuildTargets> - - <!-- for Dynamic libs, you can specify the Module .DEF file path --> - <ModuleDefinitionFile></ModuleDefinitionFile> - </PropertyGroup> - - <Import Condition="Exists('$(CoAppEtcDirectory)\common-header.vcxproj')" Project="$(CoAppEtcDirectory)\common-header.vcxproj" /> - <Import Condition="'$(UseASM)' == 'ASM'" Project="$(VCTargetsPath)\BuildCustomizations\masm.props" /> - - <PropertyGroup> - <OutDir>$(ProjectRootDir)Output/$(PlatformToolset)/$(Platform)/$(Configuration)/$(UsesConfigurationType)/$(CallingConvention)/$(CharacterSet)/$(AppContainer)/$(UseASM)/</OutDir> - <IntDir>$(ProjectRootDir)Intermediate/$(TargetName)/$(PlatformToolset)/$(Platform)/$(Configuration)/$(UsesConfigurationType)/$(CallingConvention)/$(CharacterSet)/$(AppContainer)/$(UseASM)/</IntDir> - </PropertyGroup> - - <ItemDefinitionGroup> - <ClCompile> - <SDLCheck>true</SDLCheck> - </ClCompile> - <Link> - <BaseAddress>0x5A4C0000</BaseAddress> - </Link> - </ItemDefinitionGroup> - - <ItemGroup Condition="'$(UseASM)' == 'ASM'"> - <MASM Include="..\..\..\third_party\zlib\contrib\masmx64\gvmat64.asm" Condition="$(IS_X64)"> - <AssembledCodeListingFile>$(IntDir)gvmat64.lst</AssembledCodeListingFile> - <MASMBeforeTargets>Build</MASMBeforeTargets> - <ObjectFileName>$(IntDir)gvmat64.obj</ObjectFileName> - </MASM> - <MASM Include="..\..\..\third_party\zlib\contrib\masmx64\inffasx64.asm" Condition="$(IS_X64)"> - <AssembledCodeListingFile>$(IntDir)inffasx64.lst</AssembledCodeListingFile> - <MASMBeforeTargets>Build</MASMBeforeTargets> - <ObjectFileName>$(IntDir)inffasx64.obj</ObjectFileName> - </MASM> - <MASM Include="..\..\..\third_party\zlib\contrib\masmx86\inffas32.asm" Condition="$(IS_X86) AND $(IS_STDCALL)"> - <AssembledCodeListingFile>$(IntDir)inffas32.lst</AssembledCodeListingFile> - <MASMBeforeTargets>Build</MASMBeforeTargets> - <UseSafeExceptionHandlers>true</UseSafeExceptionHandlers> - <AdditionalOptions>/coff %(AdditionalOptions)</AdditionalOptions> - <ObjectFileName>$(IntDir)inffas32.obj</ObjectFileName> - </MASM> - <MASM Include="..\..\..\third_party\zlib\contrib\masmx86\match686.asm" Condition="$(IS_X86) AND $(IS_STDCALL)"> - <AssembledCodeListingFile>$(IntDir)match686.lst</AssembledCodeListingFile> - <MASMBeforeTargets>Build</MASMBeforeTargets> - <UseSafeExceptionHandlers>true</UseSafeExceptionHandlers> - <AdditionalOptions>/coff %(AdditionalOptions)</AdditionalOptions> - <ObjectFileName>$(IntDir)match686.obj</ObjectFileName> - </MASM> - </ItemGroup> - - <ItemGroup Label="C Source Files"> - <!-- Include the source files to compile here --> - <!-- <ClCompile Include="..\src\foo.c" /> --> - <ClCompile Include="..\..\..\third_party\zlib\adler32.c" /> - <ClCompile Include="..\..\..\third_party\zlib\compress.c" /> - <ClCompile Include="..\..\..\third_party\zlib\crc32.c" /> - <ClCompile Include="..\..\..\third_party\zlib\deflate.c" /> - <ClCompile Include="..\..\..\third_party\zlib\gzclose.c" /> - <ClCompile Include="..\..\..\third_party\zlib\gzlib.c" /> - <ClCompile Include="..\..\..\third_party\zlib\gzread.c" /> - <ClCompile Include="..\..\..\third_party\zlib\gzwrite.c" /> - <ClCompile Include="..\..\..\third_party\zlib\infback.c" /> - <ClCompile Include="..\..\..\third_party\zlib\contrib\masmx64\inffas8664.c" Condition="$(IS_X64)" /> - <ClCompile Include="..\..\..\third_party\zlib\inffast.c" /> - <ClCompile Include="..\..\..\third_party\zlib\inflate.c" /> - <ClCompile Include="..\..\..\third_party\zlib\inftrees.c" /> - <ClCompile Include="..\..\..\third_party\zlib\trees.c" /> - <ClCompile Include="..\..\..\third_party\zlib\uncompr.c" /> - <ClCompile Include="..\..\..\third_party\zlib\zutil.c" /> - </ItemGroup> - - <ItemGroup Label="Resource Files"> - <!-- Include the source files to compile here --> - <!-- <ResourceCompile Include="..\src\foo.rc" /> --> - <ResourceCompile Include="..\..\..\third_party\zlib\win32\zlib1.rc" /> - </ItemGroup> - - <Import Condition="'$(UseASM)' == 'ASM'" Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" /> - <Import Condition="Exists('$(CoAppEtcDirectory)\common-footer.vcxproj')" Project="$(CoAppEtcDirectory)\common-footer.vcxproj" /> -</Project> |