Skip to content

Commit

Permalink
Finish openSeaChest_LogParser_V1.5.4-2.4.5
Browse files Browse the repository at this point in the history
# Conflicts:
#	Make/gcc/Makefile
#	README.md
#	docs/FARM_Specification.pdf
#	libjson
#	src/openSeaChest_LogParser.cpp
#	utils/include/parser_print_util_options.h
#	utils/include/seachest_parser_util_options.h
#	utils/src/EULA.cpp
#	utils/src/parser_print_util_options.cpp
#	utils/src/seachest_parser_util_options.cpp
  • Loading branch information
Swiss3003 committed Apr 30, 2024
2 parents 0cf3ec1 + c86d404 commit 5bfef07
Show file tree
Hide file tree
Showing 35 changed files with 7,618 additions and 306 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: C/C++ CI

on:
push:
branches: [ develop, master, release/* ]
pull_request:
branches: [ develop ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: make
run: |
cd Make/gcc
make farm && make clean_all && make release
72 changes: 72 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
name: "CodeQL"

on:
push:
branches: [develop, master]
pull_request:
# The branches below must be a subset of the branches above
branches: [develop]
schedule:
- cron: '0 12 * * 6'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
# Override automatic language detection by changing the below list
# Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
language: ['cpp']
# Learn more...
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
submodules: recursive

# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
#- name: Autobuild
# uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

- run: |
cd Make/gcc
make farm && make clean_all && make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
61 changes: 61 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: MSBuild

on:
push:
branches:
- master
- develop
- release/*
- feature/*
- hotfix/*
pull_request:
branches:
- develop

env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: Make/VS.2019/openSeaChest_LogParser/openSeaChest_LogParser

# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Static-Release

jobs:
build:
runs-on: windows-latest
strategy:
matrix:
platform: [ x64, x86 ]
language: ['cpp']

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1

- name: Restore NuGet packages
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget restore ${{env.SOLUTION_FILE_PATH}}

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} /p:Platform=${{matrix.platform}}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
15 changes: 15 additions & 0 deletions .whitesource
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"scanSettings": {
"configMode": "AUTO",
"configExternalURL": "",
"projectToken": "",
"baseBranches": []
},
"checkRunSettings": {
"vulnerableCheckRunConclusionLevel": "failure",
"displayMode": "diff"
},
"issueSettings": {
"minSeverityLevel": "LOW"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,180 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.32126.315
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-common", "..\..\..\..\opensea-common\Make\VS.2019\opensea-common\opensea-common\opensea-common.vcxproj", "{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}"
ProjectSection(ProjectDependencies) = postProject
{621B44CE-B314-4E05-B214-5DC70F2B4798} = {621B44CE-B314-4E05-B214-5DC70F2B4798}
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA} = {153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openSeaChest_LogParser", "openSeaChest_LogParser.vcxproj", "{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}"
ProjectSection(ProjectDependencies) = postProject
{621B44CE-B314-4E05-B214-5DC70F2B4798} = {621B44CE-B314-4E05-B214-5DC70F2B4798}
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA} = {153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46} = {D7A121F5-30B5-4CA9-A272-3B6469FF8F46}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-parser", "..\..\..\..\opensea-parser\Make\VS.2019\opensea-parser\opensea-parser\opensea-parser.vcxproj", "{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}"
ProjectSection(ProjectDependencies) = postProject
{621B44CE-B314-4E05-B214-5DC70F2B4798} = {621B44CE-B314-4E05-B214-5DC70F2B4798}
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA} = {153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "statLibJson", "..\..\..\..\libjson\VS.2019\libjson.vcxproj", "{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openSeaChest_LogParser_FARM", "..\openSeaChest_LogParser_FARM\openSeaChest_LogParser_FARM.vcxproj", "{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}"
ProjectSection(ProjectDependencies) = postProject
{621B44CE-B314-4E05-B214-5DC70F2B4798} = {621B44CE-B314-4E05-B214-5DC70F2B4798}
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA} = {153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46} = {D7A121F5-30B5-4CA9-A272-3B6469FF8F46}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Win_getopt", "..\..\..\..\wingetopt\VS.2019\Win_getopt.vcxproj", "{621B44CE-B314-4E05-B214-5DC70F2B4798}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
small|x64 = small|x64
small|x86 = small|x86
Static-Debug|x64 = Static-Debug|x64
Static-Debug|x86 = Static-Debug|x86
Static-Release|x64 = Static-Release|x64
Static-Release|x86 = Static-Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Debug|x64.ActiveCfg = Debug|x64
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Debug|x64.Build.0 = Debug|x64
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Debug|x86.ActiveCfg = Debug|Win32
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Debug|x86.Build.0 = Debug|Win32
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Release|x64.ActiveCfg = Release|x64
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Release|x64.Build.0 = Release|x64
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Release|x86.ActiveCfg = Release|Win32
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Release|x86.Build.0 = Release|Win32
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.small|x64.ActiveCfg = Debug|ARM
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.small|x64.Build.0 = Debug|ARM
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.small|x86.ActiveCfg = Debug|ARM
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.small|x86.Build.0 = Debug|ARM
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Static-Debug|x64.ActiveCfg = Static-Debug|x64
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Static-Debug|x64.Build.0 = Static-Debug|x64
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Static-Debug|x86.ActiveCfg = Static-Debug|Win32
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Static-Debug|x86.Build.0 = Static-Debug|Win32
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Static-Release|x64.ActiveCfg = Static-Release|x64
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Static-Release|x64.Build.0 = Static-Release|x64
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Static-Release|x86.ActiveCfg = Static-Release|Win32
{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}.Static-Release|x86.Build.0 = Static-Release|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Debug|x64.ActiveCfg = Debug|x64
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Debug|x64.Build.0 = Debug|x64
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Debug|x86.ActiveCfg = Debug|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Debug|x86.Build.0 = Debug|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Release|x64.ActiveCfg = Release|x64
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Release|x64.Build.0 = Release|x64
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Release|x86.ActiveCfg = Release|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Release|x86.Build.0 = Release|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.small|x64.ActiveCfg = Debug|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.small|x64.Build.0 = Debug|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.small|x86.ActiveCfg = Debug|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.small|x86.Build.0 = Debug|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Static-Debug|x64.ActiveCfg = Static-Debug|x64
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Static-Debug|x64.Build.0 = Static-Debug|x64
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Static-Debug|x86.ActiveCfg = Static-Debug|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Static-Debug|x86.Build.0 = Static-Debug|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Static-Release|x64.ActiveCfg = Static-Release|x64
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Static-Release|x64.Build.0 = Static-Release|x64
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Static-Release|x86.ActiveCfg = Static-Release|Win32
{BF10D650-ECA0-4AC3-8A7F-13B8F61C0D9D}.Static-Release|x86.Build.0 = Static-Release|Win32
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Debug|x64.ActiveCfg = Debug|x64
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Debug|x64.Build.0 = Debug|x64
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Debug|x86.ActiveCfg = Debug|Win32
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Debug|x86.Build.0 = Debug|Win32
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Release|x64.ActiveCfg = Release|x64
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Release|x64.Build.0 = Release|x64
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Release|x86.ActiveCfg = Release|Win32
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Release|x86.Build.0 = Release|Win32
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.small|x64.ActiveCfg = Static-Release|x64
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.small|x64.Build.0 = Static-Release|x64
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.small|x86.ActiveCfg = Static-Release|Win32
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.small|x86.Build.0 = Static-Release|Win32
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Static-Debug|x64.ActiveCfg = Static-Debug|x64
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Static-Debug|x64.Build.0 = Static-Debug|x64
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Static-Debug|x86.ActiveCfg = Static-Debug|Win32
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Static-Debug|x86.Build.0 = Static-Debug|Win32
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Static-Release|x64.ActiveCfg = Static-Release|x64
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Static-Release|x64.Build.0 = Static-Release|x64
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Static-Release|x86.ActiveCfg = Static-Release|Win32
{D7A121F5-30B5-4CA9-A272-3B6469FF8F46}.Static-Release|x86.Build.0 = Static-Release|Win32
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Debug|x64.ActiveCfg = Debug|x64
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Debug|x64.Build.0 = Debug|x64
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Debug|x86.ActiveCfg = Debug|Win32
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Debug|x86.Build.0 = Debug|Win32
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Release|x64.ActiveCfg = Release|x64
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Release|x64.Build.0 = Release|x64
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Release|x86.ActiveCfg = Release|Win32
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Release|x86.Build.0 = Release|Win32
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.small|x64.ActiveCfg = small|x64
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.small|x64.Build.0 = small|x64
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.small|x86.ActiveCfg = small|Win32
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.small|x86.Build.0 = small|Win32
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Static-Debug|x64.ActiveCfg = Static-Debug|x64
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Static-Debug|x64.Build.0 = Static-Debug|x64
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Static-Debug|x86.ActiveCfg = Static-Debug|Win32
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Static-Debug|x86.Build.0 = Static-Debug|Win32
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Static-Release|x64.ActiveCfg = Static-Release|x64
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Static-Release|x64.Build.0 = Static-Release|x64
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Static-Release|x86.ActiveCfg = Static-Release|Win32
{153A6FE5-40A9-4C31-B0C2-1C68D2E37BEA}.Static-Release|x86.Build.0 = Static-Release|Win32
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Debug|x64.ActiveCfg = Debug|x64
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Debug|x64.Build.0 = Debug|x64
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Debug|x86.ActiveCfg = Debug|Win32
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Debug|x86.Build.0 = Debug|Win32
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Release|x64.ActiveCfg = Release|x64
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Release|x64.Build.0 = Release|x64
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Release|x86.ActiveCfg = Release|Win32
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Release|x86.Build.0 = Release|Win32
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.small|x64.ActiveCfg = Static-Release|x64
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.small|x64.Build.0 = Static-Release|x64
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.small|x86.ActiveCfg = Static-Release|Win32
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.small|x86.Build.0 = Static-Release|Win32
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Static-Debug|x64.ActiveCfg = Static-Debug|x64
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Static-Debug|x64.Build.0 = Static-Debug|x64
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Static-Debug|x86.ActiveCfg = Static-Debug|Win32
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Static-Debug|x86.Build.0 = Static-Debug|Win32
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Static-Release|x64.ActiveCfg = Static-Release|x64
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Static-Release|x64.Build.0 = Static-Release|x64
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Static-Release|x86.ActiveCfg = Static-Release|Win32
{A41EF532-A9FA-45EF-AB94-F7C5028B10FA}.Static-Release|x86.Build.0 = Static-Release|Win32
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Debug|x64.ActiveCfg = Debug|x64
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Debug|x64.Build.0 = Debug|x64
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Debug|x86.ActiveCfg = Debug|Win32
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Debug|x86.Build.0 = Debug|Win32
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Release|x64.ActiveCfg = Release|x64
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Release|x64.Build.0 = Release|x64
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Release|x86.ActiveCfg = Release|Win32
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Release|x86.Build.0 = Release|Win32
{621B44CE-B314-4E05-B214-5DC70F2B4798}.small|x64.ActiveCfg = Static-Release|x64
{621B44CE-B314-4E05-B214-5DC70F2B4798}.small|x64.Build.0 = Static-Release|x64
{621B44CE-B314-4E05-B214-5DC70F2B4798}.small|x86.ActiveCfg = Static-Release|Win32
{621B44CE-B314-4E05-B214-5DC70F2B4798}.small|x86.Build.0 = Static-Release|Win32
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Static-Debug|x64.ActiveCfg = Static-Debug|x64
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Static-Debug|x64.Build.0 = Static-Debug|x64
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Static-Debug|x86.ActiveCfg = Static-Debug|Win32
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Static-Debug|x86.Build.0 = Static-Debug|Win32
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Static-Release|x64.ActiveCfg = Static-Release|x64
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Static-Release|x64.Build.0 = Static-Release|x64
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Static-Release|x86.ActiveCfg = Static-Release|Win32
{621B44CE-B314-4E05-B214-5DC70F2B4798}.Static-Release|x86.Build.0 = Static-Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {2F627F64-E2BC-4260-BCD7-4E3E924716D2}
EndGlobalSection
EndGlobal
Loading

0 comments on commit 5bfef07

Please sign in to comment.