mirror of https://github.com/grpc/grpc.git
commit
6b2b5bd645
752 changed files with 501 additions and 93983 deletions
@ -0,0 +1,29 @@ |
||||
/*
|
||||
* |
||||
* Copyright 2017 gRPC authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
* |
||||
*/ |
||||
|
||||
#import "GRPCCall.h" |
||||
#import "GRPCCall+OAuth2.h" |
||||
|
||||
#import <Google/SignIn.h> |
||||
|
||||
/**
|
||||
* Extend GIDSignIn class to comply GRPCAuthorizationProtocol |
||||
*/ |
||||
@interface GIDSignIn (GRPC) <GRPCAuthorizationProtocol> |
||||
- (void)getTokenWithHandler:(void (^)(NSString *token))hander; |
||||
@end |
@ -1,27 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
# Copyright 2015 gRPC authors. |
||||
# |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||
# you may not use this file except in compliance with the License. |
||||
# You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
|
||||
GRPC_CPP_PLUGIN_PATH=`which grpc_cpp_plugin` |
||||
|
||||
cd `dirname $0`/../.. |
||||
|
||||
find ./test -type f -name "*.proto" | |
||||
while read p ; do |
||||
echo "processing $p" |
||||
DIR=$(dirname "$p") |
||||
protoc $p --grpc_out=./ --plugin=protoc-gen-grpc=$GRPC_CPP_PLUGIN_PATH |
||||
protoc $p --cpp_out=./ |
||||
done |
@ -1,13 +0,0 @@ |
||||
%YAML 1.2 |
||||
--- | |
||||
<%namespace file="sln_defs.include" import="gen_solution"/>\ |
||||
<% |
||||
solution_projects = [ |
||||
p for p in vsprojects |
||||
if p.build in ['test', 'tool'] |
||||
and p.language == 'c' |
||||
and not p.boringssl |
||||
and not p.zlib |
||||
] |
||||
%>\ |
||||
${gen_solution(solution_projects, use_dlls='yes')} |
@ -1,7 +0,0 @@ |
||||
%YAML 1.2 |
||||
--- | |
||||
<%namespace file="sln_defs.include" import="gen_solution"/>\ |
||||
<% |
||||
solution_projects = [p for p in vsprojects if p.build not in ['protoc', 'test', 'fuzzer'] and p.language in ['c', 'c++'] and p.vs_proj_dir == '.' and not (p.build == 'private' and p.language == 'c++') and not p.name in ['z', 'boringssl', 'grpc++_reflection']] |
||||
%>\ |
||||
${gen_solution(solution_projects, use_dlls='yes')} |
@ -1,7 +0,0 @@ |
||||
%YAML 1.2 |
||||
--- | |
||||
<%namespace file="sln_defs.include" import="gen_solution"/>\ |
||||
<% |
||||
solution_projects = [p for p in vsprojects if p.build == 'all' and p.language == 'csharp'] |
||||
%>\ |
||||
${gen_solution(solution_projects, use_dlls='only')} |
@ -1,7 +0,0 @@ |
||||
%YAML 1.2 |
||||
--- | |
||||
<%namespace file="sln_defs.include" import="gen_solution"/>\ |
||||
<% |
||||
solution_projects = [p for p in vsprojects if p.build == 'protoc'] |
||||
%>\ |
||||
${gen_solution(solution_projects)} |
@ -1,53 +0,0 @@ |
||||
<%def name="get_name(vspackages, package)">${''.join('%s.%s' % (p.name, p.version) for p in vspackages if p.name == package)}</%def> |
||||
<%def name="gen_packages_config(packages)">\ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<packages> |
||||
% for package in vspackages: |
||||
% if packages == 'all' or package.name in packages: |
||||
<package id="${package.name}" version="${package.version}" targetFramework="Native" /> |
||||
% if package.redist: |
||||
<package id="${package.name}.redist" version="${package.version}" targetFramework="Native" /> |
||||
% endif |
||||
% endif |
||||
% endfor |
||||
</packages> |
||||
</%def>\ |
||||
<%def name="gen_package_props(packages, repo_root)">\ |
||||
% for package in vspackages: |
||||
% if packages == 'all' or package.name in packages: |
||||
% if package.props: |
||||
<Import Project="${repo_root}\vsprojects\packages\${package.name}.${package.version}\build\native\${package.name}.props" Condition="Exists('${repo_root}\vsprojects\packages\${package.name}.${package.version}\build\native\${package.version}.props')" /> |
||||
% endif |
||||
% endif |
||||
% endfor |
||||
</%def>\ |
||||
<%def name="gen_package_targets(packages, repo_root)">\ |
||||
% for package in vspackages: |
||||
% if packages == 'all' or package.name in packages: |
||||
% if package.redist: |
||||
<Import Project="${repo_root}\vsprojects\packages\${package.name}.redist.${package.version}\build\native\${package.name}.redist.targets" Condition="Exists('${repo_root}\vsprojects\packages\${package.name}.redist.${package.version}\build\native\grpc.dependencies\${package.name}.targets')" /> |
||||
% endif |
||||
<Import Project="${repo_root}\vsprojects\packages\${package.name}.${package.version}\build\native\${package.name}.targets" Condition="Exists('${repo_root}\vsprojects\packages\${package.name}.${package.version}\build\native\grpc.dependencies\${package.name}.targets')" /> |
||||
% endif |
||||
% endfor |
||||
</%def>\ |
||||
<%def name="check_file_inner(file)"><Error Condition="!Exists('${file}')" Text="$([System.String]::Format('$(ErrorText)', '${file}')" /></%def>\ |
||||
<%def name="check_file(file, repo_root, package)">${check_file_inner(file % {'root':repo_root, 'name':package.name, 'version':package.version})}</%def>\ |
||||
<%def name="gen_package_ensure(packages, repo_root)">\ |
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
||||
<PropertyGroup> |
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> |
||||
</PropertyGroup> |
||||
% for package in vspackages: |
||||
% if packages == 'all' or package.name in packages: |
||||
% if package.redist: |
||||
${check_file('%(root)s\\vsprojects\\packages\\%(name)s.redist.%(version)s\\build\\native\\%(name)s.redist.targets', repo_root, package)} |
||||
% endif |
||||
% if package.props: |
||||
${check_file('%(root)s\\vsprojects\\packages\\%(name)s.%(version)s\\build\\native\\%(name)s.props', repo_root, package)} |
||||
% endif |
||||
${check_file('%(root)s\\vsprojects\\packages\\%(name)s.%(version)s\\build\\native\\%(name)s.targets', repo_root, package)} |
||||
% endif |
||||
% endfor |
||||
</Target> |
||||
</%def>\ |
@ -1,70 +0,0 @@ |
||||
<%! |
||||
import re |
||||
import hashlib |
||||
|
||||
def calc_to_filter(path): |
||||
return '\\'.join(path.split('/')[:-1]) |
||||
%>\ |
||||
<%def name="get_repo_root(proj)">${'$(SolutionDir)\..'}</%def>\ |
||||
<%def name="to_windows_path(path)">${path.replace('/','\\')}</%def>\ |
||||
<%def name="to_filter(path)">${calc_to_filter(path)}</%def>\ |
||||
<%def name="filter_to_guid(proj, filter)">${re.sub('(........)(....)(....)(....)', r'\1-\2-\3-\4-', hashlib.md5(''.join([filter, proj])).hexdigest())}</%def>\ |
||||
<%def name="gen_filters(name, collection)">\ |
||||
% for project in vsprojects: |
||||
% if project.name == name: |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
% if project.get('src',[]): |
||||
<ItemGroup> |
||||
% for src_name in project.src: |
||||
<ClCompile Include="${get_repo_root(project)}\${to_windows_path(src_name)}"> |
||||
<Filter>${to_filter(src_name)}</Filter> |
||||
</ClCompile> |
||||
% endfor |
||||
</ItemGroup> |
||||
% endif |
||||
% if project.get('dll_def', None): |
||||
<ItemGroup> |
||||
<None Include="${get_repo_root(project)}\${to_windows_path(project.dll_def)}" /> |
||||
</ItemGroup> |
||||
% endif |
||||
% if project.get('public_headers',[]): |
||||
<ItemGroup> |
||||
% for public_header in project.public_headers: |
||||
<ClInclude Include="${get_repo_root(project)}\${to_windows_path(public_header)}"> |
||||
<Filter>${to_filter(public_header)}</Filter> |
||||
</ClInclude> |
||||
% endfor |
||||
</ItemGroup> |
||||
% endif |
||||
% if project.get('headers',[]): |
||||
<ItemGroup> |
||||
% for header in project.headers: |
||||
<ClInclude Include="${get_repo_root(project)}\${to_windows_path(header)}"> |
||||
<Filter>${to_filter(header)}</Filter> |
||||
</ClInclude> |
||||
% endfor |
||||
</ItemGroup> |
||||
% endif |
||||
<% |
||||
filters = set() |
||||
files = project.get('src', []) + project.get('public_headers', []) + project.get('headers', []) |
||||
for file in files: |
||||
filter = calc_to_filter(file) |
||||
paths = filter.split('\\') |
||||
for i in range(len(paths)): |
||||
filters.add('\\'.join(paths[:i + 1])) |
||||
|
||||
filters = sorted(filters) |
||||
%> |
||||
<ItemGroup> |
||||
% for filter in filters: |
||||
<Filter Include="${filter}"> |
||||
<UniqueIdentifier>{${filter_to_guid(project.name, filter)}}</UniqueIdentifier> |
||||
</Filter> |
||||
% endfor |
||||
</ItemGroup> |
||||
</Project> |
||||
% endif |
||||
% endfor |
||||
</%def>\ |
@ -1,20 +0,0 @@ |
||||
%YAML 1.2 |
||||
--- |
||||
foreach: vsprojects |
||||
output_name: ${selected.vs_proj_dir}/${selected.name}/${selected.name}.vcxproj |
||||
cond: selected.build not in ['fuzzer'] |
||||
template: | |
||||
<%namespace file="vcxproj_defs.include" import="gen_project"/>\ |
||||
${gen_project(selected.name, vsprojects)} |
||||
--- |
||||
foreach: vsprojects |
||||
output_name: ${selected.vs_proj_dir}/${selected.name}/${selected.name}.vcxproj.filters |
||||
cond: selected.build not in ['fuzzer'] |
||||
template: | |
||||
<%namespace file="vcxproj.filters_defs.include" import="gen_filters"/>\ |
||||
${gen_filters(selected.name, vsprojects)} |
||||
--- |
||||
output_name: grpc/packages.config |
||||
template: | |
||||
<%namespace file="packages.include" import="gen_packages_config"/>\ |
||||
${gen_packages_config('all')} |
@ -1,69 +0,0 @@ |
||||
#!/usr/bin/env python2.7 |
||||
|
||||
# Copyright 2016 gRPC authors. |
||||
# |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||
# you may not use this file except in compliance with the License. |
||||
# You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
|
||||
import os |
||||
import re |
||||
import sys |
||||
|
||||
from lxml import etree |
||||
|
||||
|
||||
def main(): |
||||
root_dir = os.path.abspath( |
||||
os.path.join(os.path.dirname(sys.argv[0]), '../..')) |
||||
os.chdir(root_dir) |
||||
|
||||
project_re = re.compile('Project\(.*\) = ".+", "(.+)", "(.+)"') |
||||
|
||||
known_projects = {} |
||||
with open(os.path.join('vsprojects', 'grpc.sln')) as f: |
||||
for line in f.readlines(): |
||||
m = project_re.match(line) |
||||
if not m: |
||||
continue |
||||
|
||||
vcxproj_path, project_guid = m.groups() |
||||
if os.name != 'nt': |
||||
vcxproj_path = vcxproj_path.replace('\\', '/') |
||||
|
||||
known_projects[project_guid] = vcxproj_path |
||||
|
||||
ok = True |
||||
for vcxproj_path in known_projects.values(): |
||||
with open(os.path.join(root_dir, 'vsprojects', vcxproj_path)) as f: |
||||
tree = etree.parse(f) |
||||
|
||||
namespaces = {'ns': 'http://schemas.microsoft.com/developer/msbuild/2003'} |
||||
referenced_projects = tree.getroot().xpath('/ns:Project/ns:ItemGroup' |
||||
'/ns:ProjectReference' |
||||
'/ns:Project', |
||||
namespaces=namespaces) |
||||
for referenced_project in referenced_projects: |
||||
# Project tag under ProjectReference is a GUID reference. |
||||
if referenced_project.text not in known_projects: |
||||
target_vcxproj = referenced_project.getparent().attrib['Include'] |
||||
guid = referenced_project.text |
||||
print ('In project "%s", dependency "%s" (with GUID "%s") is not in ' |
||||
'grpc.sln' % (vcxproj_path, target_vcxproj, guid)) |
||||
ok = False |
||||
|
||||
if not ok: |
||||
exit(1) |
||||
|
||||
|
||||
if __name__ == '__main__': |
||||
main() |
||||
|
@ -1,35 +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 Performs nuget restore step for C/C++. |
||||
|
||||
setlocal |
||||
|
||||
@rem enter repo root |
||||
cd /d %~dp0\..\..\.. |
||||
|
||||
@rem Location of nuget.exe |
||||
set NUGET=C:\nuget\nuget.exe |
||||
|
||||
if exist %NUGET% ( |
||||
%NUGET% restore vsprojects/grpc.sln || goto :error |
||||
) |
||||
|
||||
endlocal |
||||
|
||||
goto :EOF |
||||
|
||||
:error |
||||
echo Failed! |
||||
exit /b %errorlevel% |
@ -1,37 +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 Convenience script to build gRPC protoc plugins from command line. protoc plugins are used to generate service stub code from .proto service defintions. |
||||
|
||||
setlocal |
||||
|
||||
@rem enter this directory |
||||
cd /d %~dp0 |
||||
|
||||
@rem Set VS variables (uses Visual Studio 2013) |
||||
@call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" x86 |
||||
|
||||
@rem Build third_party/protobuf |
||||
msbuild ..\third_party\protobuf\cmake\build\solution\protobuf.sln /p:Configuration=Release || goto :error |
||||
|
||||
@rem Build the C# protoc plugins |
||||
msbuild grpc_protoc_plugins.sln /p:Configuration=Release || goto :error |
||||
|
||||
endlocal |
||||
|
||||
goto :EOF |
||||
|
||||
:error |
||||
echo Failed! |
||||
exit /b %errorlevel% |
@ -1,24 +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 Convenience wrapper that runs specified gRPC target using msbuild |
||||
@rem Usage: build_vs2013.bat TARGET_NAME |
||||
|
||||
setlocal |
||||
@rem Set VS variables (uses Visual Studio 2013) |
||||
@call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" x86 |
||||
|
||||
msbuild %* |
||||
exit /b %ERRORLEVEL% |
||||
endlocal |
@ -1,24 +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 Convenience wrapper that runs specified gRPC target using msbuild |
||||
@rem Usage: build_vs2015.bat TARGET_NAME |
||||
|
||||
setlocal |
||||
@rem Set VS variables (uses Visual Studio 2015) |
||||
@call "%VS140COMNTOOLS%\..\..\vc\vcvarsall.bat" x86 |
||||
|
||||
msbuild %* |
||||
exit /b %ERRORLEVEL% |
||||
endlocal |
File diff suppressed because it is too large
Load Diff
@ -1,10 +0,0 @@ |
||||
*.nupkg |
||||
*.def |
||||
/nuget.exe |
||||
/packages |
||||
/Debug |
||||
/Release |
||||
/output |
||||
/x64 |
||||
/dest |
||||
|
@ -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. |
@ -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 |
||||
|
||||
|
@ -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}; |
||||
}; |
||||
}; |
||||
|
||||
}; |
||||
} |
||||
|
@ -1 +0,0 @@ |
||||
#define { package-version: 1.0.204.1; } |
@ -1,5 +0,0 @@ |
||||
*.nupkg |
||||
/nuget.exe |
||||
/Intermediate |
||||
/Output |
||||
|
@ -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. |
@ -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 |
||||
|
||||
|
@ -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; |
||||
|
||||
}; |
||||
} |
||||
|
@ -1 +0,0 @@ |
||||
#define { package-version : 1.2.8.10; } |
@ -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> |
@ -1 +0,0 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ImportGroup Label="PropertySheets" /> <PropertyGroup Label="UserMacros" /> <PropertyGroup /> <ItemDefinitionGroup> <ClCompile> <AdditionalIncludeDirectories>$(SolutionDir)\..;$(SolutionDir)\..\include;$(SolutionDir)\..\third_party\protobuf\src;$(SolutionDir)\..\third_party\gtest\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <PreprocessorDefinitions>_SCL_SECURE_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <WarningLevel>EnableAllWarnings</WarningLevel> </ClCompile> <Link> <AdditionalDependencies>grpc++_test_util.lib;grpc_test_util.lib;gpr_test_util.lib;gtestd.lib;gflags.lib;shlwapi.lib;gpr.lib;grpc.lib;grpc++.lib;%(AdditionalDependencies)</AdditionalDependencies> <AdditionalLibraryDirectories>$(SolutionDir)\..\third_party\gtest\msvc\gtest\Debug;$(SolutionDir)\..\third_party\gflags\lib\Debug;$(SolutionDir)\..\Debug;$(SolutionDir)\..\packages\grpc.dependencies.openssl.1.0.204.1\build\native\lib\$(PlatformToolset)\$(Platform)\$(Configuration)\static;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> </Link> </ItemDefinitionGroup> <ItemGroup /> </Project> |
@ -1,20 +0,0 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ImportGroup Label="PropertySheets" /> |
||||
<PropertyGroup Label="UserMacros" /> |
||||
<PropertyGroup> |
||||
<Jenkins>false</Jenkins> |
||||
</PropertyGroup> |
||||
<ItemDefinitionGroup> |
||||
<ClCompile> |
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..;$(SolutionDir)\..\include;$(SolutionDir)\..\third_party\protobuf\src;$(SolutionDir)\packages\grpc.dependencies.zlib.1.2.8.10\build\native\include;$(SolutionDir)\packages\grpc.dependencies.openssl.1.0.204.1\build\native\include;$(SolutionDir)\packages\gflags.2.1.2.1\build\native\include;$(SolutionDir)\packages\gtest.1.7.0.1\build\native\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x600;_SCL_SECURE_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<WarningLevel>EnableAllWarnings</WarningLevel> |
||||
</ClCompile> |
||||
<Link> |
||||
<!-- LNK4271 pollutes test output. See #4521 --> |
||||
<AdditionalOptions>/ignore:4217 %(AdditionalOptions)</AdditionalOptions> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
<ItemGroup /> |
||||
</Project> |
@ -1,383 +0,0 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup Label="ProjectConfigurations"> |
||||
<ProjectConfiguration Include="Debug-DLL|Win32"> |
||||
<Configuration>Debug-DLL</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Debug-DLL|x64"> |
||||
<Configuration>Debug-DLL</Configuration> |
||||
<Platform>x64</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release-DLL|Win32"> |
||||
<Configuration>Release-DLL</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release-DLL|x64"> |
||||
<Configuration>Release-DLL</Configuration> |
||||
<Platform>x64</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Debug|Win32"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Debug|x64"> |
||||
<Configuration>Debug</Configuration> |
||||
<Platform>x64</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|Win32"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>Win32</Platform> |
||||
</ProjectConfiguration> |
||||
<ProjectConfiguration Include="Release|x64"> |
||||
<Configuration>Release</Configuration> |
||||
<Platform>x64</Platform> |
||||
</ProjectConfiguration> |
||||
</ItemGroup> |
||||
<PropertyGroup Label="Globals"> |
||||
<ProjectGuid>{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}</ProjectGuid> |
||||
<IgnoreWarnIntDirInTempDetected>true</IgnoreWarnIntDirInTempDetected> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '10.0'" Label="Configuration"> |
||||
<PlatformToolset>v100</PlatformToolset> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '11.0'" Label="Configuration"> |
||||
<PlatformToolset>v110</PlatformToolset> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '12.0'" Label="Configuration"> |
||||
<PlatformToolset>v120</PlatformToolset> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '14.0'" Label="Configuration"> |
||||
<PlatformToolset>v140</PlatformToolset> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>true</UseDebugLibraries> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>false</UseDebugLibraries> |
||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)'=='Debug-DLL'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>true</UseDebugLibraries> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)'=='Release-DLL'" Label="Configuration"> |
||||
<ConfigurationType>StaticLibrary</ConfigurationType> |
||||
<UseDebugLibraries>false</UseDebugLibraries> |
||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||
<CharacterSet>Unicode</CharacterSet> |
||||
</PropertyGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
||||
<ImportGroup Label="ExtensionSettings"> |
||||
</ImportGroup> |
||||
<ImportGroup Label="PropertySheets"> |
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
||||
<Import Project="..\..\..\vsprojects\global.props" /> |
||||
<Import Project="..\..\..\vsprojects\winsock.props" /> |
||||
</ImportGroup> |
||||
<PropertyGroup Label="UserMacros" /> |
||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'"> |
||||
<TargetName>grpc++_unsecure</TargetName> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition="'$(Configuration)'=='Release'"> |
||||
<TargetName>grpc++_unsecure</TargetName> |
||||
</PropertyGroup> |
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-DLL|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-DLL|x64'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-DLL|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-DLL|x64'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>Disabled</Optimization> |
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
||||
<ClCompile> |
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
||||
<WarningLevel>Level3</WarningLevel> |
||||
<Optimization>MaxSpeed</Optimization> |
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||
<SDLCheck>true</SDLCheck> |
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
||||
<TreatWarningAsError>true</TreatWarningAsError> |
||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
||||
</ClCompile> |
||||
<Link> |
||||
<SubSystem>Windows</SubSystem> |
||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||
<OptimizeReferences>true</OptimizeReferences> |
||||
</Link> |
||||
</ItemDefinitionGroup> |
||||
|
||||
<ItemGroup> |
||||
<ClInclude Include="..\..\..\include\grpc++\channel.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\client_context.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\completion_queue.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\create_channel.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\generic\async_generic_service.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\generic\generic_stub.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\grpc++.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\call.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\client_unary_call.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\grpc_library.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\proto_utils.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\rpc_method.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\rpc_service_method.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\serialization_traits.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\server_builder_option.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\service_type.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\sync.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\sync_cxx11.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\sync_no_cxx11.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\thd.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\thd_cxx11.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\impl\thd_no_cxx11.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\security\auth_context.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\security\auth_metadata_processor.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\security\credentials.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\security\server_credentials.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\server.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\server_builder.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\server_context.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\async_stream.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\async_unary_call.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\byte_buffer.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\channel_arguments.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\config.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\config_protobuf.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\slice.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\status.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\status_code_enum.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\string_ref.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\stub_options.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\sync_stream.h" /> |
||||
<ClInclude Include="..\..\..\include\grpc++\support\time.h" /> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ClInclude Include="..\..\..\src\cpp\client\create_channel_internal.h" /> |
||||
<ClInclude Include="..\..\..\src\cpp\common\create_auth_context.h" /> |
||||
<ClInclude Include="..\..\..\src\cpp\server\dynamic_thread_pool.h" /> |
||||
<ClInclude Include="..\..\..\src\cpp\server\fixed_size_thread_pool.h" /> |
||||
<ClInclude Include="..\..\..\src\cpp\server\thread_pool_interface.h" /> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ClCompile Include="..\..\..\src\cpp\common\insecure_create_auth_context.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\client\channel.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\client\client_context.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\client\create_channel.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\client\create_channel_internal.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\client\credentials.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\client\generic_stub.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\client\insecure_credentials.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\common\call.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\common\channel_arguments.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\common\completion_queue.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\common\rpc_method.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\proto\proto_utils.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\server\async_generic_service.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\server\create_default_thread_pool.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\server\dynamic_thread_pool.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\server\fixed_size_thread_pool.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\server\insecure_server_credentials.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\server\server.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\server\server_builder.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\server\server_context.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\server\server_credentials.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\util\byte_buffer.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\util\slice.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\util\status.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\util\string_ref.cc"> |
||||
</ClCompile> |
||||
<ClCompile Include="..\..\..\src\cpp\util\time.cc"> |
||||
</ClCompile> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<ProjectReference Include="..\..\..\vsprojects\vcxproj\.\gpr\gpr.vcxproj"> |
||||
<Project>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</Project> |
||||
</ProjectReference> |
||||
<ProjectReference Include="..\..\..\vsprojects\vcxproj\.\grpc_unsecure\grpc_unsecure.vcxproj"> |
||||
<Project>{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}</Project> |
||||
</ProjectReference> |
||||
</ItemGroup> |
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
||||
<ImportGroup Label="ExtensionTargets"> |
||||
</ImportGroup> |
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
||||
<PropertyGroup> |
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> |
||||
</PropertyGroup> |
||||
</Target> |
||||
</Project> |
||||
|
@ -1,510 +0,0 @@ |
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00 |
||||
# Visual Studio 2013 |
||||
VisualStudioVersion = 12.0.21005.1 |
||||
MinimumVisualStudioVersion = 10.0.40219.1 |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ares", "vcxproj\.\ares\ares.vcxproj", "{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "check_epollexclusive", "vcxproj\.\check_epollexclusive\check_epollexclusive.vcxproj", "{03306445-5BA0-289C-02AB-513DE6C52124}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "False" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gen_hpack_tables", "vcxproj\.\gen_hpack_tables\gen_hpack_tables.vcxproj", "{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "False" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gen_legal_metadata_characters", "vcxproj\.\gen_legal_metadata_characters\gen_legal_metadata_characters.vcxproj", "{A635DE99-B131-CA00-2D3B-8691D60B76C2}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "False" |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gen_percent_encoding_tables", "vcxproj\.\gen_percent_encoding_tables\gen_percent_encoding_tables.vcxproj", "{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "False" |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gpr", "vcxproj\.\gpr\gpr.vcxproj", "{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gpr_test_util", "vcxproj\.\gpr_test_util\gpr_test_util.vcxproj", "{EAB0A629-17A9-44DB-B5FF-E91A721FE037}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc", "vcxproj\.\grpc\grpc.vcxproj", "{29D16885-7228-4C31-81ED-5F9187C7F2A9}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc++", "vcxproj\.\grpc++\grpc++.vcxproj", "{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc++_error_details", "vcxproj\.\grpc++_error_details\grpc++_error_details.vcxproj", "{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB} = {C187A093-A0FE-489D-A40A-6E33DE0F9FEB} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc++_unsecure", "vcxproj\.\grpc++_unsecure\grpc++_unsecure.vcxproj", "{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5} = {46CEDFFF-9692-456A-AA24-38B5D6BCF4C5} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc_create_jwt", "vcxproj\.\grpc_create_jwt\grpc_create_jwt.vcxproj", "{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "False" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc_dll", "vcxproj\.\grpc_dll\grpc_dll.vcxproj", "{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc_print_google_default_creds_token", "vcxproj\.\grpc_print_google_default_creds_token\grpc_print_google_default_creds_token.vcxproj", "{C002965C-8457-CCE5-B1BA-E748FF9A11B6}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "False" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc_test_util", "vcxproj\.\grpc_test_util\grpc_test_util.vcxproj", "{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037} = {EAB0A629-17A9-44DB-B5FF-E91A721FE037} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc_test_util_unsecure", "vcxproj\.\grpc_test_util_unsecure\grpc_test_util_unsecure.vcxproj", "{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037} = {EAB0A629-17A9-44DB-B5FF-E91A721FE037} |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5} = {46CEDFFF-9692-456A-AA24-38B5D6BCF4C5} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc_unsecure", "vcxproj\.\grpc_unsecure\grpc_unsecure.vcxproj", "{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc_verify_jwt", "vcxproj\.\grpc_verify_jwt\grpc_verify_jwt.vcxproj", "{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "False" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "reconnect_server", "vcxproj\.\reconnect_server\reconnect_server.vcxproj", "{929C90AE-483F-AC80-EF93-226199F9E428}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE} = {E3110C46-A148-FF65-08FD-3324829BE7FE} |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B} = {17BCAFC0-5FDC-4C94-AEB9-95F3E220614B} |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037} = {EAB0A629-17A9-44DB-B5FF-E91A721FE037} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_tcp_server", "vcxproj\.\test_tcp_server\test_tcp_server.vcxproj", "{E3110C46-A148-FF65-08FD-3324829BE7FE}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B} = {17BCAFC0-5FDC-4C94-AEB9-95F3E220614B} |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037} = {EAB0A629-17A9-44DB-B5FF-E91A721FE037} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Global |
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
||||
Debug|Win32 = Debug|Win32 |
||||
Debug|x64 = Debug|x64 |
||||
Debug-DLL|Win32 = Debug-DLL|Win32 |
||||
Debug-DLL|x64 = Debug-DLL|x64 |
||||
Release|Win32 = Release|Win32 |
||||
Release|x64 = Release|x64 |
||||
Release-DLL|Win32 = Release-DLL|Win32 |
||||
Release-DLL|x64 = Release-DLL|x64 |
||||
EndGlobalSection |
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Release|x64.ActiveCfg = Release|x64 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Debug|x64.Build.0 = Debug|x64 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Release|Win32.Build.0 = Release|Win32 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Release|x64.Build.0 = Release|x64 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{1769D06D-F18C-B4C2-B019-31D7F83F3C9A}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Release|x64.ActiveCfg = Release|x64 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Debug|x64.Build.0 = Debug|x64 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Release|Win32.Build.0 = Release|Win32 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Release|x64.Build.0 = Release|x64 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{03306445-5BA0-289C-02AB-513DE6C52124}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Release|x64.ActiveCfg = Release|x64 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Debug|x64.Build.0 = Debug|x64 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Release|Win32.Build.0 = Release|Win32 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Release|x64.Build.0 = Release|x64 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{FCDEA4C7-7F26-05DB-D08F-A08F499026E6}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Release|x64.ActiveCfg = Release|x64 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Debug|x64.Build.0 = Debug|x64 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Release|Win32.Build.0 = Release|Win32 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Release|x64.Build.0 = Release|x64 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{A635DE99-B131-CA00-2D3B-8691D60B76C2}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Release|x64.ActiveCfg = Release|x64 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Debug|x64.Build.0 = Debug|x64 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Release|Win32.Build.0 = Release|Win32 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Release|x64.Build.0 = Release|x64 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{95D6E277-5ED9-EBDB-3DB8-19C610D2C6F5}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|x64.ActiveCfg = Release|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|x64.Build.0 = Debug|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|Win32.Build.0 = Release|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|x64.Build.0 = Release|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release|x64.ActiveCfg = Release|x64 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug|x64.Build.0 = Debug|x64 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release|Win32.Build.0 = Release|Win32 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release|x64.Build.0 = Release|x64 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|x64.ActiveCfg = Release|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|x64.Build.0 = Debug|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|Win32.Build.0 = Release|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|x64.Build.0 = Release|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug-DLL|Win32.ActiveCfg = Debug-DLL|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug-DLL|Win32.Build.0 = Debug-DLL|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug-DLL|x64.ActiveCfg = Debug-DLL|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug-DLL|x64.Build.0 = Debug-DLL|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release-DLL|Win32.ActiveCfg = Release-DLL|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release-DLL|Win32.Build.0 = Release-DLL|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release-DLL|x64.ActiveCfg = Release-DLL|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release-DLL|x64.Build.0 = Release-DLL|x64 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release|x64.ActiveCfg = Release|x64 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug|x64.Build.0 = Debug|x64 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release|Win32.Build.0 = Release|Win32 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release|x64.Build.0 = Release|x64 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug-DLL|Win32.ActiveCfg = Debug-DLL|Win32 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug-DLL|Win32.Build.0 = Debug-DLL|Win32 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug-DLL|x64.ActiveCfg = Debug-DLL|x64 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug-DLL|x64.Build.0 = Debug-DLL|x64 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release-DLL|Win32.ActiveCfg = Release-DLL|Win32 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release-DLL|Win32.Build.0 = Release-DLL|Win32 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release-DLL|x64.ActiveCfg = Release-DLL|x64 |
||||
{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release-DLL|x64.Build.0 = Release-DLL|x64 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Release|x64.ActiveCfg = Release|x64 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Debug|x64.Build.0 = Debug|x64 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Release|Win32.Build.0 = Release|Win32 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Release|x64.Build.0 = Release|x64 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{9F58AD72-49E1-4D10-B826-9E190AB0AAC0}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Release|x64.ActiveCfg = Release|x64 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Debug|x64.Build.0 = Debug|x64 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Release|Win32.Build.0 = Release|Win32 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Release|x64.Build.0 = Release|x64 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Debug-DLL|Win32.ActiveCfg = Debug-DLL|Win32 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Debug-DLL|Win32.Build.0 = Debug-DLL|Win32 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Debug-DLL|x64.ActiveCfg = Debug-DLL|x64 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Debug-DLL|x64.Build.0 = Debug-DLL|x64 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Release-DLL|Win32.ActiveCfg = Release-DLL|Win32 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Release-DLL|Win32.Build.0 = Release-DLL|Win32 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Release-DLL|x64.ActiveCfg = Release-DLL|x64 |
||||
{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}.Release-DLL|x64.Build.0 = Release-DLL|x64 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Release|x64.ActiveCfg = Release|x64 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Debug|x64.Build.0 = Debug|x64 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Release|Win32.Build.0 = Release|Win32 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Release|x64.Build.0 = Release|x64 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{77971F8D-F583-3E77-0E3C-6C1FB6B1749C}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Release|x64.ActiveCfg = Release|x64 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Debug|x64.Build.0 = Debug|x64 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Release|Win32.Build.0 = Release|Win32 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Release|x64.Build.0 = Release|x64 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Release|x64.ActiveCfg = Release|x64 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Debug|x64.Build.0 = Debug|x64 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Release|Win32.Build.0 = Release|Win32 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Release|x64.Build.0 = Release|x64 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{C002965C-8457-CCE5-B1BA-E748FF9A11B6}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release|x64.ActiveCfg = Release|x64 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug|x64.Build.0 = Debug|x64 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release|Win32.Build.0 = Release|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release|x64.Build.0 = Release|x64 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release|x64.ActiveCfg = Release|x64 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug|x64.Build.0 = Debug|x64 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release|Win32.Build.0 = Release|Win32 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release|x64.Build.0 = Release|x64 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release|x64.ActiveCfg = Release|x64 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug|x64.Build.0 = Debug|x64 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release|Win32.Build.0 = Release|Win32 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release|x64.Build.0 = Release|x64 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug-DLL|Win32.ActiveCfg = Debug-DLL|Win32 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug-DLL|Win32.Build.0 = Debug-DLL|Win32 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug-DLL|x64.ActiveCfg = Debug-DLL|x64 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug-DLL|x64.Build.0 = Debug-DLL|x64 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release-DLL|Win32.ActiveCfg = Release-DLL|Win32 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release-DLL|Win32.Build.0 = Release-DLL|Win32 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release-DLL|x64.ActiveCfg = Release-DLL|x64 |
||||
{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release-DLL|x64.Build.0 = Release-DLL|x64 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Release|x64.ActiveCfg = Release|x64 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Debug|x64.Build.0 = Debug|x64 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Release|Win32.Build.0 = Release|Win32 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Release|x64.Build.0 = Release|x64 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{02FAC25F-5FF6-34A0-00AE-B82BFBA851A9}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Release|x64.ActiveCfg = Release|x64 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Debug|x64.Build.0 = Debug|x64 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Release|Win32.Build.0 = Release|Win32 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Release|x64.Build.0 = Release|x64 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{929C90AE-483F-AC80-EF93-226199F9E428}.Release-DLL|x64.Build.0 = Release|x64 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Release|x64.ActiveCfg = Release|x64 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Debug|x64.Build.0 = Debug|x64 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Release|Win32.Build.0 = Release|Win32 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Release|x64.Build.0 = Release|x64 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Debug-DLL|Win32.ActiveCfg = Debug|Win32 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Debug-DLL|Win32.Build.0 = Debug|Win32 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Debug-DLL|x64.ActiveCfg = Debug|x64 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Debug-DLL|x64.Build.0 = Debug|x64 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Release-DLL|Win32.ActiveCfg = Release|Win32 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Release-DLL|Win32.Build.0 = Release|Win32 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Release-DLL|x64.ActiveCfg = Release|x64 |
||||
{E3110C46-A148-FF65-08FD-3324829BE7FE}.Release-DLL|x64.Build.0 = Release|x64 |
||||
EndGlobalSection |
||||
GlobalSection(SolutionProperties) = preSolution |
||||
HideSolutionNode = FALSE |
||||
EndGlobalSection |
||||
EndGlobal |
||||
|
@ -1,65 +0,0 @@ |
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00 |
||||
# Visual Studio 2013 |
||||
VisualStudioVersion = 12.0.21005.1 |
||||
MinimumVisualStudioVersion = 10.0.40219.1 |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gpr", "vcxproj\.\gpr\gpr.vcxproj", "{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc", "vcxproj\.\grpc\grpc.vcxproj", "{29D16885-7228-4C31-81ED-5F9187C7F2A9}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
EndProjectSection |
||||
EndProject |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grpc_csharp_ext", "vcxproj\.\grpc_csharp_ext\grpc_csharp_ext.vcxproj", "{D64C6D63-4458-4A88-AB38-35678384A7E4}" |
||||
ProjectSection(myProperties) = preProject |
||||
lib = "True" |
||||
EndProjectSection |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9} = {29D16885-7228-4C31-81ED-5F9187C7F2A9} |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} = {B23D3D1A-9438-4EDA-BEB6-9A0A03D17792} |
||||
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 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|x64.Build.0 = Debug|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|Win32.Build.0 = Release|Win32 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|x64.ActiveCfg = Release|x64 |
||||
{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|x64.Build.0 = Release|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|Win32.ActiveCfg = Debug-DLL|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|Win32.Build.0 = Debug-DLL|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|x64.ActiveCfg = Debug-DLL|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|x64.Build.0 = Debug-DLL|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|Win32.ActiveCfg = Release-DLL|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|Win32.Build.0 = Release-DLL|Win32 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|x64.ActiveCfg = Release-DLL|x64 |
||||
{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|x64.Build.0 = Release-DLL|x64 |
||||
{D64C6D63-4458-4A88-AB38-35678384A7E4}.Debug|Win32.ActiveCfg = Debug|Win32 |
||||
{D64C6D63-4458-4A88-AB38-35678384A7E4}.Debug|Win32.Build.0 = Debug|Win32 |
||||
{D64C6D63-4458-4A88-AB38-35678384A7E4}.Debug|x64.ActiveCfg = Debug|x64 |
||||
{D64C6D63-4458-4A88-AB38-35678384A7E4}.Debug|x64.Build.0 = Debug|x64 |
||||
{D64C6D63-4458-4A88-AB38-35678384A7E4}.Release|Win32.ActiveCfg = Release|Win32 |
||||
{D64C6D63-4458-4A88-AB38-35678384A7E4}.Release|Win32.Build.0 = Release|Win32 |
||||
{D64C6D63-4458-4A88-AB38-35678384A7E4}.Release|x64.ActiveCfg = Release|x64 |
||||
{D64C6D63-4458-4A88-AB38-35678384A7E4}.Release|x64.Build.0 = Release|x64 |
||||
EndGlobalSection |
||||
GlobalSection(SolutionProperties) = preSolution |
||||
HideSolutionNode = FALSE |
||||
EndGlobalSection |
||||
EndGlobal |
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue