diff --git a/.appveyor.yml b/.appveyor.yml
deleted file mode 100644
index b4751ac0..00000000
--- a/.appveyor.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-configuration:
- - Release
-
-platform:
- - Win32
- - x64
-
-before_build:
- - cmd: git -C .. clone -q https://github.com/MediaArea/zlib.git
- - cmd: git -C .. clone -q https://github.com/MediaArea/libxml2.git
- - cmd: git -C .. clone -q https://github.com/MediaArea/libxslt.git
- - cmd: git -C .. clone -q https://github.com/MediaArea/libevent.git
- - cmd: git -C .. clone -q https://github.com/MediaArea/jansson.git
- - cmd: git -C .. clone -q https://github.com/MediaArea/ZenLib.git
- - cmd: git -C .. clone -q https://github.com/MediaArea/MediaInfoLib.git
- - ps: >-
- If ($Env:PLATFORM -Eq "Win32") {
- perl -p '-i.bak' -e 's/..\\..\\..\\..\\Qt5.6-msvc2015\\5.6\\msvc2015/C:\\Qt\\5.6\\msvc2015/g' Project\MSVC2015\GUI\MediaConch_GUI.vcxproj
- } else {
- perl -p '-i.bak' -e 's/..\\..\\..\\..\\Qt5.6-msvc2015_64\\5.6\\msvc2015_64/C:\\Qt\\5.6\\msvc2015_64/g' Project\MSVC2015\GUI\MediaConch_GUI.vcxproj
- }
-
-build:
- project: Project\MSVC2015\MediaConch.sln
- verbosity: quiet
diff --git a/.github/workflows/MediaConch_Checks.yml b/.github/workflows/MediaConch_Checks.yml
index e2ef8eb6..e8860ade 100644
--- a/.github/workflows/MediaConch_Checks.yml
+++ b/.github/workflows/MediaConch_Checks.yml
@@ -13,7 +13,7 @@ jobs:
PYTHONPATH: /usr/local/lib/python2.7:/usr/local/lib/python2.7/dist-packages:/usr/local/lib/python2.7/site-packages
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Dependencies
@@ -26,17 +26,17 @@ jobs:
pip --disable-pip-version-check install git+https://github.com/vi/mkvparse.git
fi
if [ "$RUNNER_OS" == "macOS" ]; then
- brew install libtool automake libxslt sqlite jansson libevent qt@5 sfk xmlstarlet ffmpeg
+ brew install libtool automake libxslt jansson qt@5 sfk xmlstarlet ffmpeg
sudo pip --disable-pip-version-check install --prefix /usr/local git+https://github.com/vi/mkvparse.git
fi
- name: Get ZenLib info
id: zenlib-info
run: |
- echo "::set-output name=hash::$(git ls-remote https://github.com/MediaArea/ZenLib.git HEAD | cut -f1)"
- echo "::set-output name=path::$(dirname $PWD)/ZenLib"
+ echo "hash=$(git ls-remote https://github.com/MediaArea/ZenLib.git HEAD | cut -f1)" >> $GITHUB_OUTPUT
+ echo "path=$(dirname $PWD)/ZenLib" >> $GITHUB_OUTPUT
- name: ZenLib cache
id: zenlib-cache
- uses: actions/cache@v2
+ uses: actions/cache@v4
with:
path: ${{ steps.zenlib-info.outputs.path }}
key: ${{ runner.os }}-ZenLib-${{ steps.zenlib-info.outputs.hash }}
@@ -52,11 +52,11 @@ jobs:
- name: Get MediaInfoLib info
id: mediainfolib-info
run: |
- echo "::set-output name=hash::$(git ls-remote https://github.com/MediaArea/MediaInfoLib.git HEAD | cut -f1)"
- echo "::set-output name=path::$(dirname $PWD)/MediaInfoLib"
+ echo "hash=$(git ls-remote https://github.com/MediaArea/MediaInfoLib.git HEAD | cut -f1)" >> $GITHUB_OUTPUT
+ echo "path=$(dirname $PWD)/MediaInfoLib" >> $GITHUB_OUTPUT
- name: MediaInfoLib cache
id: mediainfolib-cache
- uses: actions/cache@v2
+ uses: actions/cache@v4
with:
path: ${{ steps.mediainfolib-info.outputs.path }}
key: ${{ runner.os }}-MediaInfoLib-${{ steps.mediainfolib-info.outputs.hash }}
@@ -96,3 +96,155 @@ jobs:
cd Project/Qt
export PATH=/usr/local/opt/qt/bin:$PATH
make
+ windows:
+ strategy:
+ matrix:
+ include:
+ - arch: Win32
+ qt_ver: 5.15
+ qt_arch: win32_msvc2019
+ - arch: x64
+ qt_ver: 5.15
+ qt_arch: win64_msvc2019_64
+ fail-fast: false
+ name: Windows (${{ matrix.arch }})
+ runs-on: windows-latest
+ steps:
+ - name: Set up Qt
+ uses: jurplel/install-qt-action@v4
+ with:
+ version: ${{ matrix.qt_ver }}
+ arch: ${{ matrix.qt_arch }}
+ modules: qtwebengine
+ - name: Get zlib info
+ id: zlib-info
+ run: |
+ ('hash=' + ((git ls-remote https://github.com/MediaArea/zlib.git HEAD) -Split "`t")[0]) | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ ('path=' + (Get-Location) + '\zlib') | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ - name: zlib cache
+ id: zlib-cache
+ uses: actions/cache@v4
+ with:
+ path: ${{ steps.zlib-info.outputs.path }}
+ key: windows-${{ matrix.arch }}-zlib-${{ steps.zlib-info.outputs.hash }}
+ - name: Checkout zlib
+ if: steps.zlib-cache.outputs.cache-hit != 'true'
+ uses: actions/checkout@v4
+ with:
+ repository: MediaArea/zlib
+ path: zlib
+ - name: Get libxml2 info
+ id: libxml2-info
+ run: |
+ ('hash=' + ((git ls-remote https://github.com/MediaArea/libxml2.git HEAD) -Split "`t")[0]) | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ ('path=' + (Get-Location) + '\libxml2') | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ - name: libxml2 cache
+ id: libxml2-cache
+ uses: actions/cache@v4
+ with:
+ path: ${{ steps.libxml2-info.outputs.path }}
+ key: windows-${{ matrix.arch }}-libxml2-${{ steps.libxml2-info.outputs.hash }}
+ - name: Checkout libxml2
+ if: steps.libxml2-cache.outputs.cache-hit != 'true'
+ uses: actions/checkout@v4
+ with:
+ repository: MediaArea/libxml2
+ path: libxml2
+ - name: Get libxslt info
+ id: libxslt-info
+ run: |
+ ('hash=' + ((git ls-remote https://github.com/MediaArea/libxslt.git HEAD) -Split "`t")[0]) | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ ('path=' + (Get-Location) + '\libxslt') | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ - name: libxslt cache
+ id: libxslt-cache
+ uses: actions/cache@v4
+ with:
+ path: ${{ steps.libxslt-info.outputs.path }}
+ key: windows-${{ matrix.arch }}-libxslt-${{ steps.libxslt-info.outputs.hash }}
+ - name: Checkout libxslt
+ if: steps.libxslt-cache.outputs.cache-hit != 'true'
+ uses: actions/checkout@v4
+ with:
+ repository: MediaArea/libxslt
+ path: libxslt
+ - name: Get libevent info
+ id: libevent-info
+ run: |
+ ('hash=' + ((git ls-remote https://github.com/MediaArea/libevent.git HEAD) -Split "`t")[0]) | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ ('path=' + (Get-Location) + '\libevent') | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ - name: libevent cache
+ id: libevent-cache
+ uses: actions/cache@v4
+ with:
+ path: ${{ steps.libevent-info.outputs.path }}
+ key: windows-${{ matrix.arch }}-libevent-${{ steps.libevent-info.outputs.hash }}
+ - name: Checkout libevent
+ if: steps.libevent-cache.outputs.cache-hit != 'true'
+ uses: actions/checkout@v4
+ with:
+ repository: MediaArea/libevent
+ path: libevent
+ - name: Get jansson info
+ id: jansson-info
+ run: |
+ ('hash=' + ((git ls-remote https://github.com/MediaArea/jansson.git HEAD) -Split "`t")[0]) | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ ('path=' + (Get-Location) + '\jansson') | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ - name: jansson cache
+ id: jansson-cache
+ uses: actions/cache@v4
+ with:
+ path: ${{ steps.jansson-info.outputs.path }}
+ key: windows-${{ matrix.arch }}-jansson-${{ steps.jansson-info.outputs.hash }}
+ - name: Checkout jansson
+ if: steps.jansson-cache.outputs.cache-hit != 'true'
+ uses: actions/checkout@v4
+ with:
+ repository: MediaArea/jansson
+ path: jansson
+ - name: Get ZenLib info
+ id: zenlib-info
+ run: |
+ ('hash=' + ((git ls-remote https://github.com/MediaArea/ZenLib.git HEAD) -Split "`t")[0]) | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ ('path=' + (Get-Location) + '\ZenLib') | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ - name: ZenLib cache
+ id: zenlib-cache
+ uses: actions/cache@v4
+ with:
+ path: ${{ steps.zenlib-info.outputs.path }}
+ key: windows-${{ matrix.arch }}-zenlib-${{ steps.zenlib-info.outputs.hash }}
+ - name: Checkout ZenLib
+ if: steps.zenlib-cache.outputs.cache-hit != 'true'
+ uses: actions/checkout@v4
+ with:
+ repository: MediaArea/ZenLib
+ path: ZenLib
+ - name: Get MediaInfoLib info
+ id: mediainfolib-info
+ run: |
+ ('hash=' + ((git ls-remote https://github.com/MediaArea/MediaInfoLib.git HEAD) -Split "`t")[0]) | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ ('path=' + (Get-Location) + '\MediaInfoLib') | Out-File -FilePath $env:GITHUB_OUTPUT -Append
+ - name: MediaInfoLib cache
+ id: mediainfolib-cache
+ uses: actions/cache@v4
+ with:
+ path: ${{ steps.mediainfolib-info.outputs.path }}
+ key: windows-${{ matrix.arch }}-mediainfolib-${{ steps.mediainfolib-info.outputs.hash }}
+ - name: Checkout MediaInfoLib
+ if: steps.mediainfolib-cache.outputs.cache-hit != 'true'
+ uses: actions/checkout@v4
+ with:
+ repository: MediaArea/MediaInfoLib
+ path: MediaInfoLib
+ - name: Checkout MediaConch
+ uses: actions/checkout@v4
+ with:
+ path: MediaConch
+ - name: Add MSBuild to PATH
+ uses: microsoft/setup-msbuild@v2
+ with:
+ msbuild-architecture: x64
+ - name: Build
+ run: |
+ $Env:IncludePath="$Env:QT_ROOT_DIR\include\QtGui;$Env:QT_ROOT_DIR\include\QtWidgets;$Env:QT_ROOT_DIR\include\QtCore;$Env:QT_ROOT_DIR\include\QtWebEngine;$Env:QT_ROOT_DIR\include\QtWebEngineWidgets;$Env:QT_ROOT_DIR\include\QtWebEngineCore;$Env:QT_ROOT_DIR\include\QtWebChannel;$Env:QT_ROOT_DIR\include;$Env:IncludePath"
+ $Env:LINK="/LIBPATH:$Env:QT_ROOT_DIR\lib"
+ MSBuild /Verbosity:Quiet /p:Configuration=Release`;Platform=${{ matrix.arch }} MediaConch\Project\MSVC2022\MediaConch.sln
diff --git a/Project/MSVC2013/CLI/MediaConch.vcxproj b/Project/MSVC2013/CLI/MediaConch.vcxproj
deleted file mode 100644
index e8b03832..00000000
--- a/Project/MSVC2013/CLI/MediaConch.vcxproj
+++ /dev/null
@@ -1,227 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- MediaConch-CLI
- {8A1AE679-131A-493C-86CA-91179B0955A4}
- MediaConch
- Win32Proj
-
-
-
- Application
- Unicode
- v120
-
-
- Application
- Unicode
- v120
-
-
- Application
- Unicode
- v120
-
-
- Application
- Unicode
- v120
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- MediaConch
- MediaConch
- MediaConch
- MediaConch
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
-
-
- Console
- true
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
-
-
- Console
- true
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- true
-
-
- Console
- true
- true
- MachineX86
- true
- ..\..\..\Project\MSVC2013\$(Platform)\$(Configuration);..\..\..\..\MediaInfoLib\Project\MSVC2013\Library\$(Platform)\$(Configuration);..\..\..\..\ZenLib\Project\MSVC2013\Library\$(Platform)\$(Configuration);..\..\..\..\libxslt\win32\libxslt\$(Platform)\$(Configuration);..\..\..\..\libxml2\win32\VC12\$(Platform)\$(Configuration);..\..\..\..\zlib\projects\MSVC2013\$(Platform)\$(Configuration)
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
-
-
- Console
- true
- true
- MachineX64
- true
- ..\..\..\Project\MSVC2013\$(Platform)\$(Configuration);..\..\..\..\MediaInfoLib\Project\MSVC2013\Library\$(Platform)\$(Configuration);..\..\..\..\ZenLib\Project\MSVC2013\Library\$(Platform)\$(Configuration);..\..\..\..\libxslt\win32\libxslt\$(Platform)\$(Configuration);..\..\..\..\libxml2\win32\VC12\$(Platform)\$(Configuration);..\..\..\..\zlib\projects\MSVC2013\$(Platform)\$(Configuration)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2013/CLI/MediaConch.vcxproj.filters b/Project/MSVC2013/CLI/MediaConch.vcxproj.filters
deleted file mode 100644
index 8e18d415..00000000
--- a/Project/MSVC2013/CLI/MediaConch.vcxproj.filters
+++ /dev/null
@@ -1,227 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {3ae77992-ac1e-4f84-9b70-b9b52ce3b46a}
-
-
- {04e8d873-200e-44c5-843e-432f681438f8}
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hpp;hxx;hm;inl;inc;xsd
-
-
- {4144b785-9e42-4b50-b521-d1f949969234}
-
-
- {0e3aa0e0-c270-4d91-87ae-50c30aad50c0}
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav
-
-
- {17d3f297-ae83-44c2-be09-2e2882b1565a}
-
-
- {3c62d1d8-29ba-45c4-8828-7a5e54664aa9}
-
-
-
-
- Source Files\CLI
-
-
- Source Files\CLI
-
-
- Source Files\CLI
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\CLI
-
-
- ThirdParty\sqlite
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- ThirdParty\sqlite
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2013/CLI/MediaConch_CLI.rc b/Project/MSVC2013/CLI/MediaConch_CLI.rc
deleted file mode 100644
index d039a4f2..00000000
--- a/Project/MSVC2013/CLI/MediaConch_CLI.rc
+++ /dev/null
@@ -1,32 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
diff --git a/Project/MSVC2013/GUI/MediaConch_GUI.rc b/Project/MSVC2013/GUI/MediaConch_GUI.rc
deleted file mode 100644
index c4feeef0..00000000
--- a/Project/MSVC2013/GUI/MediaConch_GUI.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
-
-//Icons
-aaaaaaaa ICON "../../../Source/Resource/Image/MediaConch.ico"
diff --git a/Project/MSVC2013/GUI/MediaConch_GUI.vcxproj b/Project/MSVC2013/GUI/MediaConch_GUI.vcxproj
deleted file mode 100644
index 5cb7eb15..00000000
--- a/Project/MSVC2013/GUI/MediaConch_GUI.vcxproj
+++ /dev/null
@@ -1,385 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}
- Win32Proj
- MediaConch_GUI
- MediaConch-GUI
-
-
-
- Application
- true
- v120
- Unicode
-
-
- Application
- true
- v120
- Unicode
-
-
- Application
- false
- v120
- Unicode
-
-
- Application
- false
- v120
- Unicode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtGui;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtWidgets;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtCore;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtWebKit;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtWebKitWidgets;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtWebKitCore;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtWebChannel;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include
- MultiThreadedDebugDLL
- true
- false
-
-
- Windows
- ..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\lib
- Qt5Cored.lib;Qt5Guid.lib;Qt5Xmld.lib;Qt5Widgetsd.lib;Qt5PlatformSupportd.lib;Qt5Networkd.lib;Qt5PrintSupportd.lib;Qt5WebChanneld.lib;Qt5WebKitd.lib;Qt5WebKitWidgetsd.lib;qtmaind.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013 Kit
-
-
- Post-Build.bat ..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013 $(OutDir) $(Configuration)
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtGui;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWidgets;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtCore;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWebKit;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWebKitWidgets;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWebKit;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWebKitWidgets;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWebKitCore;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWebChannel;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include
- MultiThreadedDebugDLL
- true
- false
-
-
- Windows
- ..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\lib
- Qt5Cored.lib;Qt5Guid.lib;Qt5Xmld.lib;Qt5Widgetsd.lib;Qt5PlatformSupportd.lib;Qt5Networkd.lib;Qt5PrintSupportd.lib;Qt5WebChanneld.lib;Qt5WebKitd.lib;Qt5WebKitWidgetsd.lib;qtmaind.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64 Kit
-
-
- Post-Build.bat ..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64 $(OutDir) $(Configuration)
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtGui;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtWidgets;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtCore;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtWebKit;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtWebKitWidgets;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtWebKitCore;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include/QtWebChannel;..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\include
- MultiThreadedDLL
- true
- None
-
-
- Windows
- No
- true
- true
- ..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013\lib
- Qt5Core.lib;Qt5Gui.lib;Qt5Xml.lib;Qt5Widgets.lib;Qt5PlatformSupport.lib;Qt5Network.lib;Qt5PrintSupport.lib;Qt5WebChannel.lib;Qt5WebKit.lib;Qt5WebKitWidgets.lib;qtmain.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013 Kit
-
-
- Post-Build.bat ..\..\..\..\Qt5.5-msvc2013\5.5\msvc2013 $(OutDir) $(Configuration)
-
-
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
-
-
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtGui;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWidgets;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtCore;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWebKit;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWebKitWidgets;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWebKitCore;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include/QtWebChannel;..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\include
- MultiThreadedDLL
- true
- None
-
-
- Windows
- No
- true
- true
- ..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64\lib
- Qt5Core.lib;Qt5Gui.lib;Qt5Xml.lib;Qt5Widgets.lib;Qt5PlatformSupport.lib;Qt5Network.lib;Qt5PrintSupport.lib;Qt5WebChannel.lib;Qt5WebKit.lib;Qt5WebKitWidgets.lib;qtmain.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64 Kit
-
-
- Post-Build.bat ..\..\..\..\Qt5.5-msvc2013_64\5.5\msvc2013_64 $(OutDir) $(Configuration)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- true
- true
- true
-
-
- true
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
- Document
-
-
- Document
-
-
- Document
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2013/GUI/MediaConch_GUI.vcxproj.filters b/Project/MSVC2013/GUI/MediaConch_GUI.vcxproj.filters
deleted file mode 100644
index 60361b98..00000000
--- a/Project/MSVC2013/GUI/MediaConch_GUI.vcxproj.filters
+++ /dev/null
@@ -1,553 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hh;hpp;hxx;hm;inl;inc;xsd
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
-
-
- {16615b4b-f6f6-4711-b84e-0c274ffe74bf}
-
-
- {905b9726-45c0-4a7d-96c8-4a9ef9fe1873}
-
-
- {4bbb3fb2-9002-40fd-8895-7484f292962a}
-
-
- {0346e935-23a9-493f-b58e-e8cbeee949d6}
-
-
- {38264c64-6e1e-4f5a-9906-a6c27769b269}
-
-
- {ca9be640-a193-4ba5-a1ea-2bbea3b077f4}
-
-
- {0d330ddd-8c38-4d7c-9944-c00240a228fb}
-
-
- {92bd129a-a825-4860-8967-4c4af26d195b}
-
-
- {baf09673-486b-4234-9ffe-987d6b99e130}
-
-
- {7ec6a6e9-679b-49f4-bf60-6d1a8f2b2209}
-
-
-
-
- Resource Files
-
-
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- ThirdParty\sqlite
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files\Core
-
-
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- ThirdParty\sqlite
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\_Automated
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
-
-
- Resource Files
-
-
- Resource Files\HTML
-
-
- Resource Files\HTML
-
-
- Resource Files\UI
-
-
- Resource Files\UI
-
-
- Resource Files\HTML
-
-
- Resource Files\HTML
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2013/GUI/Post-Build.bat b/Project/MSVC2013/GUI/Post-Build.bat
deleted file mode 100644
index 1e5bcb81..00000000
--- a/Project/MSVC2013/GUI/Post-Build.bat
+++ /dev/null
@@ -1,49 +0,0 @@
-if "%3"=="" echo "Post-Build.bat Qt_Dir Output_Dir Configuration_Name" | find /v "0 "
-
-if not exist %1 (
-echo Missing Qt directory %1. Correct the Qt path in project properties: Include Directories, Library Directories, Pre-Build, Post-Build.
-%1\bin\qmake
-) else if %3==Release (
-xcopy /D %1\bin\Qt5Core.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Quick.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Qml.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Widgets.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Gui.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5MultimediaWidgets.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Multimedia.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Sensors.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5PrintSupport.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Positioning.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5OpenGL.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5WebChannel.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5WebKit.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5WebKitWidgets.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Network.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Sql.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\icudt54.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\icuin54.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\icuuc54.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\plugins\platforms\qwindows.dll %2platforms\ | find /v "0 " || cd %CD%
-) else (
-xcopy /D %1\bin\Qt5Cored.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Quickd.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Qmld.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Widgetsd.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Guid.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5MultimediaWidgetsd.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Multimediad.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Sensorsd.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5PrintSupportd.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Positioningd.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5OpenGLd.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5WebChanneld.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5WebKitd.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5WebKitWidgetsd.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Networkd.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\Qt5Sqld.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\icudt54.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\icuin54.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\bin\icuuc54.dll %2 | find /v "0 " || cd %CD%
-xcopy /D %1\plugins\platforms\qwindowsd.dll %2platforms\ | find /v "0 " || cd %CD%
-)
-
diff --git a/Project/MSVC2013/GUI/Pre-Build.bat b/Project/MSVC2013/GUI/Pre-Build.bat
deleted file mode 100644
index ed540599..00000000
--- a/Project/MSVC2013/GUI/Pre-Build.bat
+++ /dev/null
@@ -1,9 +0,0 @@
-if "%2"=="" echo "Pre-Build.bat Qt_Dir Kit|Engine" | find /v "0 "
-
-if not exist %1 (
-echo Missing Qt directory %1. Correct the Qt path in project properties: Include Directories, Library Directories, Pre-Build, Post-Build.
-%1\bin\qmake
-) else (
-%1\bin\qmake ..\..\Qt\MediaConch.pro USE_WEB%2=1 2> nul
-nmake /NOLOGO /f Makefile.Debug compiler_uic_make_all compiler_rcc_make_all mocables
-)
\ No newline at end of file
diff --git a/Project/MSVC2013/MediaConch.sln b/Project/MSVC2013/MediaConch.sln
deleted file mode 100644
index 7fab3235..00000000
--- a/Project/MSVC2013/MediaConch.sln
+++ /dev/null
@@ -1,152 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 2013
-VisualStudioVersion = 12.0.40629.0
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ThirdParty", "ThirdParty", "{70DAF034-E8BA-4636-A42C-CC581B3ECC94}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-CLI", "CLI\MediaConch.vcxproj", "{8A1AE679-131A-493C-86CA-91179B0955A4}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-GUI", "GUI\MediaConch_GUI.vcxproj", "{2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZenLib", "..\..\..\ZenLib\Project\MSVC2013\Library\ZenLib.vcxproj", "{0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaInfoLib", "..\..\..\MediaInfoLib\Project\MSVC2013\Library\MediaInfoLib.vcxproj", "{20E0F8D6-213C-460B-B361-9C725CB375C7}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaInfoDll", "..\..\..\MediaInfoLib\Project\MSVC2013\Dll\MediaInfoDll.vcxproj", "{BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxml2", "..\..\..\libxml2\win32\VC12\libxml2.vcxproj", "{1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "..\..\..\zlib\contrib\vstudio\vc12\zlibstat.vcxproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxslt", "..\..\..\libxslt\win32\VC12\libxslt\libxslt.vcxproj", "{F8C03828-5050-4E68-A7B4-41131F9049D7}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libexslt", "..\..\..\libxslt\win32\VC12\libexslt\libexslt.vcxproj", "{C66B92E2-E917-4556-84D9-6D32C10C3185}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MediaInfo", "MediaInfo", "{363ECBF5-3630-4FFB-B713-6C4F708FC425}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Jansson", "..\..\..\jansson\Contrib\VC12\Jansson\Jansson.vcxproj", "{40460A4D-243E-48DB-A2F6-F5C57ACDE134}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "event", "..\..\..\libevent\Contrib\VC12\event\event.vcxproj", "{F687C268-C5D7-36DF-80C4-641ED9C82BC8}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-Server", "Server\MediaConch-Server.vcxproj", "{66830D9C-0A1E-4664-B846-F5DAEDB574E6}"
-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
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|Win32.ActiveCfg = Debug|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|Win32.Build.0 = Debug|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|x64.ActiveCfg = Debug|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|x64.Build.0 = Debug|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|Win32.ActiveCfg = Release|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|Win32.Build.0 = Release|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|x64.ActiveCfg = Release|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|x64.Build.0 = Release|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|Win32.ActiveCfg = Debug|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|Win32.Build.0 = Debug|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|x64.ActiveCfg = Debug|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|x64.Build.0 = Debug|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|Win32.ActiveCfg = Release|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|Win32.Build.0 = Release|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|x64.ActiveCfg = Release|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|x64.Build.0 = Release|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|Win32.ActiveCfg = Debug|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|Win32.Build.0 = Debug|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|x64.ActiveCfg = Debug|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|x64.Build.0 = Debug|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|Win32.ActiveCfg = Release|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|Win32.Build.0 = Release|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|x64.ActiveCfg = Release|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|x64.Build.0 = Release|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|Win32.ActiveCfg = Debug|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|Win32.Build.0 = Debug|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|x64.ActiveCfg = Debug|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|x64.Build.0 = Debug|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|Win32.ActiveCfg = Release|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|Win32.Build.0 = Release|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|x64.ActiveCfg = Release|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|x64.Build.0 = Release|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|Win32.ActiveCfg = Debug|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|Win32.Build.0 = Debug|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|x64.ActiveCfg = Debug|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|x64.Build.0 = Debug|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|Win32.ActiveCfg = Release|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|Win32.Build.0 = Release|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|x64.ActiveCfg = Release|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|x64.Build.0 = Release|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|Win32.ActiveCfg = Debug|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|Win32.Build.0 = Debug|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|x64.ActiveCfg = Debug|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|x64.Build.0 = Debug|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|Win32.ActiveCfg = Release|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|Win32.Build.0 = Release|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|x64.ActiveCfg = Release|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|x64.Build.0 = Release|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.ActiveCfg = Debug|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.Build.0 = Debug|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = ReleaseWithoutAsm|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = ReleaseWithoutAsm|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.ActiveCfg = ReleaseWithoutAsm|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.Build.0 = ReleaseWithoutAsm|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|Win32.ActiveCfg = Debug|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|Win32.Build.0 = Debug|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|x64.ActiveCfg = Debug|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|x64.Build.0 = Debug|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|Win32.ActiveCfg = Release|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|Win32.Build.0 = Release|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|x64.ActiveCfg = Release|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|x64.Build.0 = Release|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|Win32.ActiveCfg = Debug|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|Win32.Build.0 = Debug|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|x64.ActiveCfg = Debug|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|x64.Build.0 = Debug|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|Win32.ActiveCfg = Release|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|Win32.Build.0 = Release|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|x64.ActiveCfg = Release|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|x64.Build.0 = Release|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|Win32.ActiveCfg = Debug|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|Win32.Build.0 = Debug|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|x64.ActiveCfg = Debug|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|x64.Build.0 = Debug|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|Win32.ActiveCfg = Release|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|Win32.Build.0 = Release|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|x64.ActiveCfg = Release|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|x64.Build.0 = Release|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|Win32.ActiveCfg = Debug|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|Win32.Build.0 = Debug|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|x64.ActiveCfg = Debug|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|x64.Build.0 = Debug|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|Win32.ActiveCfg = Release|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|Win32.Build.0 = Release|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|x64.ActiveCfg = Release|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|x64.Build.0 = Release|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|Win32.ActiveCfg = Debug|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|Win32.Build.0 = Debug|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|x64.ActiveCfg = Debug|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|x64.Build.0 = Debug|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|Win32.ActiveCfg = Release|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|Win32.Build.0 = Release|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|x64.ActiveCfg = Release|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|x64.Build.0 = Release|x64
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(NestedProjects) = preSolution
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {20E0F8D6-213C-460B-B361-9C725CB375C7} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {F8C03828-5050-4E68-A7B4-41131F9049D7} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {C66B92E2-E917-4556-84D9-6D32C10C3185} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- EndGlobalSection
-EndGlobal
diff --git a/Project/MSVC2013/Server/MediaConch-Server.rc b/Project/MSVC2013/Server/MediaConch-Server.rc
deleted file mode 100644
index ceb95cb7..00000000
--- a/Project/MSVC2013/Server/MediaConch-Server.rc
+++ /dev/null
@@ -1,32 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
diff --git a/Project/MSVC2013/Server/MediaConch-Server.vcxproj b/Project/MSVC2013/Server/MediaConch-Server.vcxproj
deleted file mode 100644
index c57def52..00000000
--- a/Project/MSVC2013/Server/MediaConch-Server.vcxproj
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- MediaConch-Server
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}
- Win32Proj
-
-
-
- Application
- Unicode
- v120
-
-
- Application
- Unicode
- v120
-
-
- Application
- Unicode
- v120
-
-
- Application
- Unicode
- v120
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
- true
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
- true
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- true
- Disabled
-
-
- Console
- true
- true
- MachineX86
- true
- ..\..\..\Project\MSVC2013\$(Platform)\$(Configuration);..\..\..\..\MediaInfoLib\Project\MSVC2013\Library\$(Platform)\$(Configuration);..\..\..\..\ZenLib\Project\MSVC2013\Library\$(Platform)\$(Configuration);..\..\..\..\libxslt\win32\libxslt\$(Platform)\$(Configuration);..\..\..\..\libxml2\win32\VC12\$(Platform)\$(Configuration);..\..\..\..\zlib\projects\MSVC2013\$(Platform)\$(Configuration)
- true
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC12/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- Disabled
-
-
- Console
- true
- true
- MachineX64
- true
- ..\..\..\Project\MSVC2013\$(Platform)\$(Configuration);..\..\..\..\MediaInfoLib\Project\MSVC2013\Library\$(Platform)\$(Configuration);..\..\..\..\ZenLib\Project\MSVC2013\Library\$(Platform)\$(Configuration);..\..\..\..\libxslt\win32\libxslt\$(Platform)\$(Configuration);..\..\..\..\libxml2\win32\VC12\$(Platform)\$(Configuration);..\..\..\..\zlib\projects\MSVC2013\$(Platform)\$(Configuration)
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2013/Server/MediaConch-Server.vcxproj.filters b/Project/MSVC2013/Server/MediaConch-Server.vcxproj.filters
deleted file mode 100644
index 96d77e89..00000000
--- a/Project/MSVC2013/Server/MediaConch-Server.vcxproj.filters
+++ /dev/null
@@ -1,227 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {3ae77992-ac1e-4f84-9b70-b9b52ce3b46a}
-
-
- {04e8d873-200e-44c5-843e-432f681438f8}
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hpp;hxx;hm;inl;inc;xsd
-
-
- {4144b785-9e42-4b50-b521-d1f949969234}
-
-
- {0e3aa0e0-c270-4d91-87ae-50c30aad50c0}
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav
-
-
- {17d3f297-ae83-44c2-be09-2e2882b1565a}
-
-
- {3c62d1d8-29ba-45c4-8828-7a5e54664aa9}
-
-
-
-
- Source Files\Daemon
-
-
- Source Files\Daemon
-
-
- Source Files\Daemon
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- ThirdParty\sqlite
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
-
-
- Header Files\Daemon
-
-
- Header Files\Daemon
-
-
- Header Files\Daemon
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- ThirdParty\sqlite
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2015/CLI/MediaConch.vcxproj b/Project/MSVC2015/CLI/MediaConch.vcxproj
deleted file mode 100644
index a356cc74..00000000
--- a/Project/MSVC2015/CLI/MediaConch.vcxproj
+++ /dev/null
@@ -1,314 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- MediaConch-CLI
- {8A1AE679-131A-493C-86CA-91179B0955A4}
- MediaConch
- Win32Proj
-
-
-
- Application
- true
- Unicode
- v140
-
-
- Application
- false
- Unicode
- v140
-
-
- Application
- true
- Unicode
- v140
-
-
- Application
- false
- Unicode
- v140
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- MediaConch
- MediaConch
- MediaConch
- MediaConch
-
-
-
-
-
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- true
- None
- false
-
-
- Console
- true
- true
- MachineX86
- true
- ..\..\..\Project\MSVC2015\$(Platform)\$(Configuration);..\..\..\..\MediaInfoLib\Project\MSVC2015\Library\$(Platform)\$(Configuration);..\..\..\..\ZenLib\Project\MSVC2015\Library\$(Platform)\$(Configuration);..\..\..\..\libxslt\win32\libxslt\$(Platform)\$(Configuration);..\..\..\..\libxml2\win32\VC14\$(Platform)\$(Configuration);..\..\..\..\zlib\projects\MSVC2015\$(Platform)\$(Configuration)
- No
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- None
- false
-
-
- Console
- true
- true
- MachineX64
- true
- ..\..\..\Project\MSVC2015\$(Platform)\$(Configuration);..\..\..\..\MediaInfoLib\Project\MSVC2015\Library\$(Platform)\$(Configuration);..\..\..\..\ZenLib\Project\MSVC2015\Library\$(Platform)\$(Configuration);..\..\..\..\libxslt\win32\libxslt\$(Platform)\$(Configuration);..\..\..\..\libxml2\win32\VC14\$(Platform)\$(Configuration);..\..\..\..\zlib\projects\MSVC2015\$(Platform)\$(Configuration)
- No
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2015/CLI/MediaConch.vcxproj.filters b/Project/MSVC2015/CLI/MediaConch.vcxproj.filters
deleted file mode 100644
index 61e15dc1..00000000
--- a/Project/MSVC2015/CLI/MediaConch.vcxproj.filters
+++ /dev/null
@@ -1,347 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {3ae77992-ac1e-4f84-9b70-b9b52ce3b46a}
-
-
- {04e8d873-200e-44c5-843e-432f681438f8}
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hpp;hxx;hm;inl;inc;xsd
-
-
- {4144b785-9e42-4b50-b521-d1f949969234}
-
-
- {0e3aa0e0-c270-4d91-87ae-50c30aad50c0}
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav
-
-
- {17d3f297-ae83-44c2-be09-2e2882b1565a}
-
-
- {3c62d1d8-29ba-45c4-8828-7a5e54664aa9}
-
-
-
-
- Source Files\CLI
-
-
- Source Files\CLI
-
-
- Source Files\CLI
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\CLI
-
-
- ThirdParty\sqlite
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- ThirdParty\sqlite
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\CLI
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2015/CLI/MediaConch_CLI.rc b/Project/MSVC2015/CLI/MediaConch_CLI.rc
deleted file mode 100644
index ceb95cb7..00000000
--- a/Project/MSVC2015/CLI/MediaConch_CLI.rc
+++ /dev/null
@@ -1,32 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
diff --git a/Project/MSVC2015/GUI/MediaConch_GUI.rc b/Project/MSVC2015/GUI/MediaConch_GUI.rc
deleted file mode 100644
index 27a1577c..00000000
--- a/Project/MSVC2015/GUI/MediaConch_GUI.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
-
-//Icons
-aaaaaaaa ICON "../../../Source/Resource/Image/MediaConch.ico"
diff --git a/Project/MSVC2015/GUI/MediaConch_GUI.vcxproj b/Project/MSVC2015/GUI/MediaConch_GUI.vcxproj
deleted file mode 100644
index 58d5b03b..00000000
--- a/Project/MSVC2015/GUI/MediaConch_GUI.vcxproj
+++ /dev/null
@@ -1,418 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}
- Win32Proj
- MediaConch_GUI
- MediaConch-GUI
-
-
-
- Application
- true
- v140
- Unicode
-
-
- Application
- true
- v140
- Unicode
-
-
- Application
- false
- v140
- Unicode
-
-
- Application
- false
- v140
- Unicode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtGui;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtWidgets;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtCore;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtWebEngine;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtWebEngineWidgets;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtWebEngineCore;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtWebChannel;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include
- MultiThreadedDebugDLL
- true
- false
-
-
- Windows
- ..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\lib
- Qt5Cored.lib;Qt5Guid.lib;Qt5Xmld.lib;Qt5Widgetsd.lib;Qt5PlatformSupportd.lib;Qt5Networkd.lib;Qt5PrintSupportd.lib;Qt5WebChanneld.lib;Qt5WebEngined.lib;Qt5WebEngineWidgetsd.lib;qtmaind.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015 $(OutDir) $(Configuration)
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtGui;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWidgets;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtCore;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWebEngine;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWebEngine;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWebEngineCore;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWebChannel;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include
- MultiThreadedDebugDLL
- true
- false
-
-
- Windows
- ..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\lib
- Qt5Cored.lib;Qt5Guid.lib;Qt5Xmld.lib;Qt5Widgetsd.lib;Qt5PlatformSupportd.lib;Qt5Networkd.lib;Qt5PrintSupportd.lib;Qt5WebChanneld.lib;Qt5WebEngined.lib;Qt5WebEngineWidgetsd.lib;qtmaind.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64 $(OutDir) $(Configuration)
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtGui;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtWidgets;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtCore;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtWebEngine;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtWebEngineWidgets;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtWebEngineCore;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include/QtWebChannel;..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\include
- MultiThreadedDLL
- true
- None
-
-
- Windows
- No
- true
- true
- ..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015\lib
- Qt5Core.lib;Qt5Gui.lib;Qt5Xml.lib;Qt5Widgets.lib;Qt5PlatformSupport.lib;Qt5Network.lib;Qt5PrintSupport.lib;Qt5WebChannel.lib;Qt5WebEngine.lib;Qt5WebEngineWidgets.lib;qtmain.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.6-msvc2015\5.6\msvc2015 $(OutDir) $(Configuration)
-
-
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
-
-
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtGui;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWidgets;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtCore;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWebEngine;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWebEngineCore;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include/QtWebChannel;..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\include
- MultiThreadedDLL
- true
- None
-
-
- Windows
- No
- true
- true
- ..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64\lib
- Qt5Core.lib;Qt5Gui.lib;Qt5Xml.lib;Qt5Widgets.lib;Qt5PlatformSupport.lib;Qt5Network.lib;Qt5PrintSupport.lib;Qt5WebChannel.lib;Qt5WebEngine.lib;Qt5WebEngineWidgets.lib;qtmain.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.6-msvc2015_64\5.6\msvc2015_64 $(OutDir) $(Configuration)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- true
- true
- true
-
-
- true
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
- Document
-
-
- Document
-
-
- Document
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2015/GUI/MediaConch_GUI.vcxproj.filters b/Project/MSVC2015/GUI/MediaConch_GUI.vcxproj.filters
deleted file mode 100644
index 16c9bc64..00000000
--- a/Project/MSVC2015/GUI/MediaConch_GUI.vcxproj.filters
+++ /dev/null
@@ -1,547 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hh;hpp;hxx;hm;inl;inc;xsd
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
-
-
- {16615b4b-f6f6-4711-b84e-0c274ffe74bf}
-
-
- {905b9726-45c0-4a7d-96c8-4a9ef9fe1873}
-
-
- {4bbb3fb2-9002-40fd-8895-7484f292962a}
-
-
- {0346e935-23a9-493f-b58e-e8cbeee949d6}
-
-
- {38264c64-6e1e-4f5a-9906-a6c27769b269}
-
-
- {ca9be640-a193-4ba5-a1ea-2bbea3b077f4}
-
-
- {0d330ddd-8c38-4d7c-9944-c00240a228fb}
-
-
- {92bd129a-a825-4860-8967-4c4af26d195b}
-
-
- {bff903fc-cea8-42d5-be92-5b64b7dec2dd}
-
-
- {5b729284-5077-4411-b45a-98a762cd40c3}
-
-
-
-
- Resource Files
-
-
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- ThirdParty\sqlite
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- ThirdParty\sqlite
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\_Automated
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
-
-
- Resource Files
-
-
- Resource Files\HTML
-
-
- Resource Files\HTML
-
-
- Resource Files\UI
-
-
- Resource Files\UI
-
-
- Resource Files\HTML
-
-
- Resource Files\HTML
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2015/GUI/Post-Build.bat b/Project/MSVC2015/GUI/Post-Build.bat
deleted file mode 100644
index e7363d29..00000000
--- a/Project/MSVC2015/GUI/Post-Build.bat
+++ /dev/null
@@ -1,8 +0,0 @@
-if "%2"=="" echo "Post-Build.bat Qt_Dir Output_Dir" | find /v "0 "
-
-if not exist %1 (
-echo Missing Qt directory %1. Correct the Qt path in project properties: Include Directories, Library Directories, Pre-Build, Post-Build.
-%1\bin\windeployqt
-) else (
-%1\bin\windeployqt %2
-)
diff --git a/Project/MSVC2015/GUI/Pre-Build.bat b/Project/MSVC2015/GUI/Pre-Build.bat
deleted file mode 100644
index ed540599..00000000
--- a/Project/MSVC2015/GUI/Pre-Build.bat
+++ /dev/null
@@ -1,9 +0,0 @@
-if "%2"=="" echo "Pre-Build.bat Qt_Dir Kit|Engine" | find /v "0 "
-
-if not exist %1 (
-echo Missing Qt directory %1. Correct the Qt path in project properties: Include Directories, Library Directories, Pre-Build, Post-Build.
-%1\bin\qmake
-) else (
-%1\bin\qmake ..\..\Qt\MediaConch.pro USE_WEB%2=1 2> nul
-nmake /NOLOGO /f Makefile.Debug compiler_uic_make_all compiler_rcc_make_all mocables
-)
\ No newline at end of file
diff --git a/Project/MSVC2015/MediaConch.sln b/Project/MSVC2015/MediaConch.sln
deleted file mode 100644
index 9e9db960..00000000
--- a/Project/MSVC2015/MediaConch.sln
+++ /dev/null
@@ -1,152 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 14
-VisualStudioVersion = 14.0.24720.0
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ThirdParty", "ThirdParty", "{70DAF034-E8BA-4636-A42C-CC581B3ECC94}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-CLI", "CLI\MediaConch.vcxproj", "{8A1AE679-131A-493C-86CA-91179B0955A4}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-GUI", "GUI\MediaConch_GUI.vcxproj", "{2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZenLib", "..\..\..\ZenLib\Project\MSVC2015\Library\ZenLib.vcxproj", "{0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaInfoLib", "..\..\..\MediaInfoLib\Project\MSVC2015\Library\MediaInfoLib.vcxproj", "{20E0F8D6-213C-460B-B361-9C725CB375C7}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaInfoDll", "..\..\..\MediaInfoLib\Project\MSVC2015\Dll\MediaInfoDll.vcxproj", "{BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxml2", "..\..\..\libxml2\win32\VC14\libxml2.vcxproj", "{1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "..\..\..\zlib\contrib\vstudio\vc14\zlibstat.vcxproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxslt", "..\..\..\libxslt\win32\VC14\libxslt\libxslt.vcxproj", "{F8C03828-5050-4E68-A7B4-41131F9049D7}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libexslt", "..\..\..\libxslt\win32\VC14\libexslt\libexslt.vcxproj", "{C66B92E2-E917-4556-84D9-6D32C10C3185}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MediaInfo", "MediaInfo", "{363ECBF5-3630-4FFB-B713-6C4F708FC425}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "event", "..\..\..\libevent\Contrib\VC14\event\event.vcxproj", "{F687C268-C5D7-36DF-80C4-641ED9C82BC8}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Jansson", "..\..\..\jansson\Contrib\VC14\Jansson\Jansson.vcxproj", "{40460A4D-243E-48DB-A2F6-F5C57ACDE134}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-Server", "Server\MediaConch-Server.vcxproj", "{66830D9C-0A1E-4664-B846-F5DAEDB574E6}"
-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
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|Win32.ActiveCfg = Debug|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|Win32.Build.0 = Debug|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|x64.ActiveCfg = Debug|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|x64.Build.0 = Debug|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|Win32.ActiveCfg = Release|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|Win32.Build.0 = Release|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|x64.ActiveCfg = Release|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|x64.Build.0 = Release|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|Win32.ActiveCfg = Debug|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|Win32.Build.0 = Debug|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|x64.ActiveCfg = Debug|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|x64.Build.0 = Debug|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|Win32.ActiveCfg = Release|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|Win32.Build.0 = Release|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|x64.ActiveCfg = Release|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|x64.Build.0 = Release|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|Win32.ActiveCfg = Debug|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|Win32.Build.0 = Debug|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|x64.ActiveCfg = Debug|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|x64.Build.0 = Debug|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|Win32.ActiveCfg = Release|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|Win32.Build.0 = Release|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|x64.ActiveCfg = Release|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|x64.Build.0 = Release|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|Win32.ActiveCfg = Debug|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|Win32.Build.0 = Debug|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|x64.ActiveCfg = Debug|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|x64.Build.0 = Debug|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|Win32.ActiveCfg = Release|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|Win32.Build.0 = Release|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|x64.ActiveCfg = Release|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|x64.Build.0 = Release|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|Win32.ActiveCfg = Debug|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|Win32.Build.0 = Debug|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|x64.ActiveCfg = Debug|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|x64.Build.0 = Debug|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|Win32.ActiveCfg = Release|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|Win32.Build.0 = Release|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|x64.ActiveCfg = Release|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|x64.Build.0 = Release|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|Win32.ActiveCfg = Debug|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|Win32.Build.0 = Debug|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|x64.ActiveCfg = Debug|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|x64.Build.0 = Debug|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|Win32.ActiveCfg = Release|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|Win32.Build.0 = Release|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|x64.ActiveCfg = Release|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|x64.Build.0 = Release|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.ActiveCfg = Debug|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.Build.0 = Debug|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = ReleaseWithoutAsm|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = ReleaseWithoutAsm|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.ActiveCfg = ReleaseWithoutAsm|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.Build.0 = ReleaseWithoutAsm|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|Win32.ActiveCfg = Debug|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|Win32.Build.0 = Debug|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|x64.ActiveCfg = Debug|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|x64.Build.0 = Debug|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|Win32.ActiveCfg = Release|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|Win32.Build.0 = Release|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|x64.ActiveCfg = Release|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|x64.Build.0 = Release|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|Win32.ActiveCfg = Debug|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|Win32.Build.0 = Debug|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|x64.ActiveCfg = Debug|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|x64.Build.0 = Debug|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|Win32.ActiveCfg = Release|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|Win32.Build.0 = Release|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|x64.ActiveCfg = Release|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|x64.Build.0 = Release|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|Win32.ActiveCfg = Debug|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|Win32.Build.0 = Debug|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|x64.ActiveCfg = Debug|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|x64.Build.0 = Debug|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|Win32.ActiveCfg = Release|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|Win32.Build.0 = Release|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|x64.ActiveCfg = Release|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|x64.Build.0 = Release|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|Win32.ActiveCfg = Debug|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|Win32.Build.0 = Debug|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|x64.ActiveCfg = Debug|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|x64.Build.0 = Debug|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|Win32.ActiveCfg = Release|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|Win32.Build.0 = Release|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|x64.ActiveCfg = Release|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|x64.Build.0 = Release|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|Win32.ActiveCfg = Debug|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|Win32.Build.0 = Debug|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|x64.ActiveCfg = Debug|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|x64.Build.0 = Debug|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|Win32.ActiveCfg = Release|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|Win32.Build.0 = Release|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|x64.ActiveCfg = Release|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|x64.Build.0 = Release|x64
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(NestedProjects) = preSolution
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {20E0F8D6-213C-460B-B361-9C725CB375C7} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {F8C03828-5050-4E68-A7B4-41131F9049D7} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {C66B92E2-E917-4556-84D9-6D32C10C3185} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- EndGlobalSection
-EndGlobal
diff --git a/Project/MSVC2015/Server/MediaConch-Server.rc b/Project/MSVC2015/Server/MediaConch-Server.rc
deleted file mode 100644
index ceb95cb7..00000000
--- a/Project/MSVC2015/Server/MediaConch-Server.rc
+++ /dev/null
@@ -1,32 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
diff --git a/Project/MSVC2015/Server/MediaConch-Server.vcxproj b/Project/MSVC2015/Server/MediaConch-Server.vcxproj
deleted file mode 100644
index 0e6fe2db..00000000
--- a/Project/MSVC2015/Server/MediaConch-Server.vcxproj
+++ /dev/null
@@ -1,306 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- MediaConch-Server
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}
- Win32Proj
-
-
-
- Application
- true
- Unicode
- v140
-
-
- Application
- false
- Unicode
- v140
-
-
- Application
- true
- Unicode
- v140
-
-
- Application
- false
- Unicode
- v140
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
-
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- true
- Disabled
- None
- false
-
-
- Console
- true
- true
- MachineX86
- true
- No
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC14/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- Disabled
- None
- false
-
-
- Console
- true
- true
- MachineX64
- true
- No
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2015/Server/MediaConch-Server.vcxproj.filters b/Project/MSVC2015/Server/MediaConch-Server.vcxproj.filters
deleted file mode 100644
index 94135614..00000000
--- a/Project/MSVC2015/Server/MediaConch-Server.vcxproj.filters
+++ /dev/null
@@ -1,338 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {3ae77992-ac1e-4f84-9b70-b9b52ce3b46a}
-
-
- {04e8d873-200e-44c5-843e-432f681438f8}
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hpp;hxx;hm;inl;inc;xsd
-
-
- {4144b785-9e42-4b50-b521-d1f949969234}
-
-
- {0e3aa0e0-c270-4d91-87ae-50c30aad50c0}
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav
-
-
- {17d3f297-ae83-44c2-be09-2e2882b1565a}
-
-
- {3c62d1d8-29ba-45c4-8828-7a5e54664aa9}
-
-
-
-
- Source Files\Daemon
-
-
- Source Files\Daemon
-
-
- Source Files\Daemon
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- ThirdParty\sqlite
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
-
-
- Header Files\Daemon
-
-
- Header Files\Daemon
-
-
- Header Files\Daemon
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- ThirdParty\sqlite
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2017/CLI/MediaConch.vcxproj b/Project/MSVC2017/CLI/MediaConch.vcxproj
deleted file mode 100644
index cd3708b8..00000000
--- a/Project/MSVC2017/CLI/MediaConch.vcxproj
+++ /dev/null
@@ -1,314 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- MediaConch-CLI
- {8A1AE679-131A-493C-86CA-91179B0955A4}
- MediaConch
- Win32Proj
-
-
-
- Application
- true
- Unicode
- v141
-
-
- Application
- false
- Unicode
- v141
-
-
- Application
- true
- Unicode
- v141
-
-
- Application
- false
- Unicode
- v141
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- MediaConch
- MediaConch
- MediaConch
- MediaConch
-
-
-
-
-
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- true
- None
- false
-
-
- Console
- true
- true
- MachineX86
- true
- ..\..\..\Project\MSVC2017\$(Platform)\$(Configuration);..\..\..\..\MediaInfoLib\Project\MSVC2017\Library\$(Platform)\$(Configuration);..\..\..\..\ZenLib\Project\MSVC2017\Library\$(Platform)\$(Configuration);..\..\..\..\libxslt\win32\libxslt\$(Platform)\$(Configuration);..\..\..\..\libxml2\win32\VC15\$(Platform)\$(Configuration);..\..\..\..\zlib\projects\MSVC2017\$(Platform)\$(Configuration)
- No
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- None
- false
-
-
- Console
- true
- true
- MachineX64
- true
- ..\..\..\Project\MSVC2017\$(Platform)\$(Configuration);..\..\..\..\MediaInfoLib\Project\MSVC2017\Library\$(Platform)\$(Configuration);..\..\..\..\ZenLib\Project\MSVC2017\Library\$(Platform)\$(Configuration);..\..\..\..\libxslt\win32\libxslt\$(Platform)\$(Configuration);..\..\..\..\libxml2\win32\VC15\$(Platform)\$(Configuration);..\..\..\..\zlib\projects\MSVC2017\$(Platform)\$(Configuration)
- No
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2017/CLI/MediaConch.vcxproj.filters b/Project/MSVC2017/CLI/MediaConch.vcxproj.filters
deleted file mode 100644
index 61e15dc1..00000000
--- a/Project/MSVC2017/CLI/MediaConch.vcxproj.filters
+++ /dev/null
@@ -1,347 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {3ae77992-ac1e-4f84-9b70-b9b52ce3b46a}
-
-
- {04e8d873-200e-44c5-843e-432f681438f8}
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hpp;hxx;hm;inl;inc;xsd
-
-
- {4144b785-9e42-4b50-b521-d1f949969234}
-
-
- {0e3aa0e0-c270-4d91-87ae-50c30aad50c0}
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav
-
-
- {17d3f297-ae83-44c2-be09-2e2882b1565a}
-
-
- {3c62d1d8-29ba-45c4-8828-7a5e54664aa9}
-
-
-
-
- Source Files\CLI
-
-
- Source Files\CLI
-
-
- Source Files\CLI
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\CLI
-
-
- ThirdParty\sqlite
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- ThirdParty\sqlite
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\CLI
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2017/CLI/MediaConch_CLI.rc b/Project/MSVC2017/CLI/MediaConch_CLI.rc
deleted file mode 100644
index ceb95cb7..00000000
--- a/Project/MSVC2017/CLI/MediaConch_CLI.rc
+++ /dev/null
@@ -1,32 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
diff --git a/Project/MSVC2017/GUI/MediaConch_GUI.rc b/Project/MSVC2017/GUI/MediaConch_GUI.rc
deleted file mode 100644
index 27a1577c..00000000
--- a/Project/MSVC2017/GUI/MediaConch_GUI.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
-
-//Icons
-aaaaaaaa ICON "../../../Source/Resource/Image/MediaConch.ico"
diff --git a/Project/MSVC2017/GUI/MediaConch_GUI.vcxproj b/Project/MSVC2017/GUI/MediaConch_GUI.vcxproj
deleted file mode 100644
index 634ec60f..00000000
--- a/Project/MSVC2017/GUI/MediaConch_GUI.vcxproj
+++ /dev/null
@@ -1,418 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}
- Win32Proj
- MediaConch_GUI
- MediaConch-GUI
-
-
-
- Application
- true
- v141
- Unicode
-
-
- Application
- true
- v141
- Unicode
-
-
- Application
- false
- v141
- Unicode
-
-
- Application
- false
- v141
- Unicode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtGui;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include
- MultiThreadedDebugDLL
- true
- false
-
-
- Windows
- ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\lib
- Qt5Cored.lib;Qt5Guid.lib;Qt5Xmld.lib;Qt5Widgetsd.lib;Qt5Networkd.lib;Qt5PrintSupportd.lib;Qt5WebChanneld.lib;Qt5WebEngined.lib;Qt5WebEngineWidgetsd.lib;qtmaind.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 $(OutDir) $(Configuration)
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtGui;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include
- MultiThreadedDebugDLL
- true
- false
-
-
- Windows
- ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\lib
- Qt5Cored.lib;Qt5Guid.lib;Qt5Xmld.lib;Qt5Widgetsd.lib;Qt5Networkd.lib;Qt5PrintSupportd.lib;Qt5WebChanneld.lib;Qt5WebEngined.lib;Qt5WebEngineWidgetsd.lib;qtmaind.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 $(OutDir) $(Configuration)
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtGui;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include
- MultiThreadedDLL
- true
- None
-
-
- Windows
- No
- true
- true
- ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\lib
- Qt5Core.lib;Qt5Gui.lib;Qt5Xml.lib;Qt5Widgets.lib;Qt5Network.lib;Qt5PrintSupport.lib;Qt5WebChannel.lib;Qt5WebEngine.lib;Qt5WebEngineWidgets.lib;qtmain.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 $(OutDir) $(Configuration)
-
-
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
-
-
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtGui;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include
- MultiThreadedDLL
- true
- None
-
-
- Windows
- No
- true
- true
- ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\lib
- Qt5Core.lib;Qt5Gui.lib;Qt5Xml.lib;Qt5Widgets.lib;Qt5Network.lib;Qt5PrintSupport.lib;Qt5WebChannel.lib;Qt5WebEngine.lib;Qt5WebEngineWidgets.lib;qtmain.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 $(OutDir) $(Configuration)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- true
- true
- true
-
-
- true
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
- Document
-
-
- Document
-
-
- Document
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2017/GUI/MediaConch_GUI.vcxproj.filters b/Project/MSVC2017/GUI/MediaConch_GUI.vcxproj.filters
deleted file mode 100644
index 16c9bc64..00000000
--- a/Project/MSVC2017/GUI/MediaConch_GUI.vcxproj.filters
+++ /dev/null
@@ -1,547 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hh;hpp;hxx;hm;inl;inc;xsd
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
-
-
- {16615b4b-f6f6-4711-b84e-0c274ffe74bf}
-
-
- {905b9726-45c0-4a7d-96c8-4a9ef9fe1873}
-
-
- {4bbb3fb2-9002-40fd-8895-7484f292962a}
-
-
- {0346e935-23a9-493f-b58e-e8cbeee949d6}
-
-
- {38264c64-6e1e-4f5a-9906-a6c27769b269}
-
-
- {ca9be640-a193-4ba5-a1ea-2bbea3b077f4}
-
-
- {0d330ddd-8c38-4d7c-9944-c00240a228fb}
-
-
- {92bd129a-a825-4860-8967-4c4af26d195b}
-
-
- {bff903fc-cea8-42d5-be92-5b64b7dec2dd}
-
-
- {5b729284-5077-4411-b45a-98a762cd40c3}
-
-
-
-
- Resource Files
-
-
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- ThirdParty\sqlite
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- ThirdParty\sqlite
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\_Automated
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
-
-
- Resource Files
-
-
- Resource Files\HTML
-
-
- Resource Files\HTML
-
-
- Resource Files\UI
-
-
- Resource Files\UI
-
-
- Resource Files\HTML
-
-
- Resource Files\HTML
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2017/GUI/Post-Build.bat b/Project/MSVC2017/GUI/Post-Build.bat
deleted file mode 100644
index 7070eae1..00000000
--- a/Project/MSVC2017/GUI/Post-Build.bat
+++ /dev/null
@@ -1,8 +0,0 @@
-if "%2"=="" echo "Post-Build.bat Qt_Dir Output_Dir" | find /v "0 "
-
-if not exist %1 (
-echo Missing Qt directory %1. Correct the Qt path in project properties: Include Directories, Library Directories, Pre-Build, Post-Build.
-%1\bin\windeployqt
-) else (
-%1\bin\windeployqt --release %2
-)
diff --git a/Project/MSVC2017/GUI/Pre-Build.bat b/Project/MSVC2017/GUI/Pre-Build.bat
deleted file mode 100644
index 4828e8b6..00000000
--- a/Project/MSVC2017/GUI/Pre-Build.bat
+++ /dev/null
@@ -1,9 +0,0 @@
-if "%2"=="" echo "Pre-Build.bat Qt_Dir Kit|Engine" | find /v "0 "
-
-if not exist %1 (
-echo Missing Qt directory %1. Correct the Qt path in project properties: Include Directories, Library Directories, Pre-Build, Post-Build.
-%1\bin\qmake
-) else (
-%1\bin\qmake ..\..\Qt\MediaConch.pro USE_WEB%2=1 2> nul
-nmake /NOLOGO /f Makefile.Release compiler_uic_make_all compiler_rcc_make_all mocables
-)
\ No newline at end of file
diff --git a/Project/MSVC2017/MediaConch.sln b/Project/MSVC2017/MediaConch.sln
deleted file mode 100644
index ff3fae8a..00000000
--- a/Project/MSVC2017/MediaConch.sln
+++ /dev/null
@@ -1,152 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 14
-VisualStudioVersion = 14.0.24720.0
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ThirdParty", "ThirdParty", "{70DAF034-E8BA-4636-A42C-CC581B3ECC94}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-CLI", "CLI\MediaConch.vcxproj", "{8A1AE679-131A-493C-86CA-91179B0955A4}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-GUI", "GUI\MediaConch_GUI.vcxproj", "{2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZenLib", "..\..\..\ZenLib\Project\MSVC2017\Library\ZenLib.vcxproj", "{0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaInfoLib", "..\..\..\MediaInfoLib\Project\MSVC2017\Library\MediaInfoLib.vcxproj", "{20E0F8D6-213C-460B-B361-9C725CB375C7}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaInfoDll", "..\..\..\MediaInfoLib\Project\MSVC2017\Dll\MediaInfoDll.vcxproj", "{BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxml2", "..\..\..\libxml2\win32\VC15\libxml2.vcxproj", "{1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "..\..\..\zlib\contrib\vstudio\vc15\zlibstat.vcxproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxslt", "..\..\..\libxslt\win32\VC15\libxslt\libxslt.vcxproj", "{F8C03828-5050-4E68-A7B4-41131F9049D7}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libexslt", "..\..\..\libxslt\win32\VC15\libexslt\libexslt.vcxproj", "{C66B92E2-E917-4556-84D9-6D32C10C3185}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MediaInfo", "MediaInfo", "{363ECBF5-3630-4FFB-B713-6C4F708FC425}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "event", "..\..\..\libevent\Contrib\VC15\event\event.vcxproj", "{F687C268-C5D7-36DF-80C4-641ED9C82BC8}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Jansson", "..\..\..\jansson\Contrib\VC15\Jansson\Jansson.vcxproj", "{40460A4D-243E-48DB-A2F6-F5C57ACDE134}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-Server", "Server\MediaConch-Server.vcxproj", "{66830D9C-0A1E-4664-B846-F5DAEDB574E6}"
-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
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|Win32.ActiveCfg = Debug|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|Win32.Build.0 = Debug|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|x64.ActiveCfg = Debug|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|x64.Build.0 = Debug|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|Win32.ActiveCfg = Release|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|Win32.Build.0 = Release|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|x64.ActiveCfg = Release|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|x64.Build.0 = Release|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|Win32.ActiveCfg = Debug|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|Win32.Build.0 = Debug|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|x64.ActiveCfg = Debug|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|x64.Build.0 = Debug|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|Win32.ActiveCfg = Release|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|Win32.Build.0 = Release|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|x64.ActiveCfg = Release|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|x64.Build.0 = Release|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|Win32.ActiveCfg = Debug|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|Win32.Build.0 = Debug|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|x64.ActiveCfg = Debug|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|x64.Build.0 = Debug|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|Win32.ActiveCfg = Release|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|Win32.Build.0 = Release|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|x64.ActiveCfg = Release|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|x64.Build.0 = Release|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|Win32.ActiveCfg = Debug|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|Win32.Build.0 = Debug|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|x64.ActiveCfg = Debug|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|x64.Build.0 = Debug|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|Win32.ActiveCfg = Release|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|Win32.Build.0 = Release|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|x64.ActiveCfg = Release|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|x64.Build.0 = Release|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|Win32.ActiveCfg = Debug|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|Win32.Build.0 = Debug|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|x64.ActiveCfg = Debug|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|x64.Build.0 = Debug|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|Win32.ActiveCfg = Release|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|Win32.Build.0 = Release|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|x64.ActiveCfg = Release|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|x64.Build.0 = Release|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|Win32.ActiveCfg = Debug|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|Win32.Build.0 = Debug|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|x64.ActiveCfg = Debug|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|x64.Build.0 = Debug|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|Win32.ActiveCfg = Release|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|Win32.Build.0 = Release|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|x64.ActiveCfg = Release|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|x64.Build.0 = Release|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.ActiveCfg = Debug|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.Build.0 = Debug|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = ReleaseWithoutAsm|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = ReleaseWithoutAsm|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.ActiveCfg = ReleaseWithoutAsm|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.Build.0 = ReleaseWithoutAsm|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|Win32.ActiveCfg = Debug|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|Win32.Build.0 = Debug|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|x64.ActiveCfg = Debug|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|x64.Build.0 = Debug|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|Win32.ActiveCfg = Release|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|Win32.Build.0 = Release|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|x64.ActiveCfg = Release|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|x64.Build.0 = Release|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|Win32.ActiveCfg = Debug|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|Win32.Build.0 = Debug|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|x64.ActiveCfg = Debug|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|x64.Build.0 = Debug|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|Win32.ActiveCfg = Release|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|Win32.Build.0 = Release|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|x64.ActiveCfg = Release|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|x64.Build.0 = Release|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|Win32.ActiveCfg = Debug|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|Win32.Build.0 = Debug|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|x64.ActiveCfg = Debug|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|x64.Build.0 = Debug|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|Win32.ActiveCfg = Release|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|Win32.Build.0 = Release|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|x64.ActiveCfg = Release|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|x64.Build.0 = Release|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|Win32.ActiveCfg = Debug|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|Win32.Build.0 = Debug|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|x64.ActiveCfg = Debug|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|x64.Build.0 = Debug|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|Win32.ActiveCfg = Release|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|Win32.Build.0 = Release|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|x64.ActiveCfg = Release|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|x64.Build.0 = Release|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|Win32.ActiveCfg = Debug|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|Win32.Build.0 = Debug|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|x64.ActiveCfg = Debug|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|x64.Build.0 = Debug|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|Win32.ActiveCfg = Release|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|Win32.Build.0 = Release|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|x64.ActiveCfg = Release|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|x64.Build.0 = Release|x64
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(NestedProjects) = preSolution
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {20E0F8D6-213C-460B-B361-9C725CB375C7} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {F8C03828-5050-4E68-A7B4-41131F9049D7} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {C66B92E2-E917-4556-84D9-6D32C10C3185} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- EndGlobalSection
-EndGlobal
diff --git a/Project/MSVC2017/Server/MediaConch-Server.rc b/Project/MSVC2017/Server/MediaConch-Server.rc
deleted file mode 100644
index ceb95cb7..00000000
--- a/Project/MSVC2017/Server/MediaConch-Server.rc
+++ /dev/null
@@ -1,32 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
diff --git a/Project/MSVC2017/Server/MediaConch-Server.vcxproj b/Project/MSVC2017/Server/MediaConch-Server.vcxproj
deleted file mode 100644
index d0a286e9..00000000
--- a/Project/MSVC2017/Server/MediaConch-Server.vcxproj
+++ /dev/null
@@ -1,306 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- MediaConch-Server
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}
- Win32Proj
-
-
-
- Application
- true
- Unicode
- v141
-
-
- Application
- false
- Unicode
- v141
-
-
- Application
- true
- Unicode
- v141
-
-
- Application
- false
- Unicode
- v141
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
-
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- true
- Disabled
- None
- false
-
-
- Console
- true
- true
- MachineX86
- true
- No
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC15/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- Disabled
- None
- false
-
-
- Console
- true
- true
- MachineX64
- true
- No
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2017/Server/MediaConch-Server.vcxproj.filters b/Project/MSVC2017/Server/MediaConch-Server.vcxproj.filters
deleted file mode 100644
index 94135614..00000000
--- a/Project/MSVC2017/Server/MediaConch-Server.vcxproj.filters
+++ /dev/null
@@ -1,338 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {3ae77992-ac1e-4f84-9b70-b9b52ce3b46a}
-
-
- {04e8d873-200e-44c5-843e-432f681438f8}
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hpp;hxx;hm;inl;inc;xsd
-
-
- {4144b785-9e42-4b50-b521-d1f949969234}
-
-
- {0e3aa0e0-c270-4d91-87ae-50c30aad50c0}
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav
-
-
- {17d3f297-ae83-44c2-be09-2e2882b1565a}
-
-
- {3c62d1d8-29ba-45c4-8828-7a5e54664aa9}
-
-
-
-
- Source Files\Daemon
-
-
- Source Files\Daemon
-
-
- Source Files\Daemon
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- ThirdParty\sqlite
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
-
-
- Header Files\Daemon
-
-
- Header Files\Daemon
-
-
- Header Files\Daemon
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- ThirdParty\sqlite
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2019/CLI/MediaConch.vcxproj b/Project/MSVC2019/CLI/MediaConch.vcxproj
deleted file mode 100644
index b430cc0b..00000000
--- a/Project/MSVC2019/CLI/MediaConch.vcxproj
+++ /dev/null
@@ -1,314 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- MediaConch-CLI
- {8A1AE679-131A-493C-86CA-91179B0955A4}
- MediaConch
- Win32Proj
-
-
-
- Application
- true
- Unicode
- v142
-
-
- Application
- false
- Unicode
- v142
-
-
- Application
- true
- Unicode
- v142
-
-
- Application
- false
- Unicode
- v142
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- MediaConch
- MediaConch
- MediaConch
- MediaConch
-
-
-
-
-
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- true
- None
- false
-
-
- Console
- true
- true
- MachineX86
- true
- ..\..\..\Project\MSVC2019\$(Platform)\$(Configuration);..\..\..\..\MediaInfoLib\Project\MSVC2019\Library\$(Platform)\$(Configuration);..\..\..\..\ZenLib\Project\MSVC2019\Library\$(Platform)\$(Configuration);..\..\..\..\libxslt\win32\libxslt\$(Platform)\$(Configuration);..\..\..\..\libxml2\win32\VC16\$(Platform)\$(Configuration);..\..\..\..\zlib\projects\MSVC2019\$(Platform)\$(Configuration)
- No
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- None
- false
-
-
- Console
- true
- true
- MachineX64
- true
- ..\..\..\Project\MSVC2019\$(Platform)\$(Configuration);..\..\..\..\MediaInfoLib\Project\MSVC2019\Library\$(Platform)\$(Configuration);..\..\..\..\ZenLib\Project\MSVC2019\Library\$(Platform)\$(Configuration);..\..\..\..\libxslt\win32\libxslt\$(Platform)\$(Configuration);..\..\..\..\libxml2\win32\VC16\$(Platform)\$(Configuration);..\..\..\..\zlib\projects\MSVC2019\$(Platform)\$(Configuration)
- No
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
-
-
diff --git a/Project/MSVC2019/CLI/MediaConch.vcxproj.filters b/Project/MSVC2019/CLI/MediaConch.vcxproj.filters
deleted file mode 100644
index 61e15dc1..00000000
--- a/Project/MSVC2019/CLI/MediaConch.vcxproj.filters
+++ /dev/null
@@ -1,347 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {3ae77992-ac1e-4f84-9b70-b9b52ce3b46a}
-
-
- {04e8d873-200e-44c5-843e-432f681438f8}
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hpp;hxx;hm;inl;inc;xsd
-
-
- {4144b785-9e42-4b50-b521-d1f949969234}
-
-
- {0e3aa0e0-c270-4d91-87ae-50c30aad50c0}
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav
-
-
- {17d3f297-ae83-44c2-be09-2e2882b1565a}
-
-
- {3c62d1d8-29ba-45c4-8828-7a5e54664aa9}
-
-
-
-
- Source Files\CLI
-
-
- Source Files\CLI
-
-
- Source Files\CLI
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\CLI
-
-
- ThirdParty\sqlite
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\CLI
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- ThirdParty\sqlite
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\CLI
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2019/CLI/MediaConch_CLI.rc b/Project/MSVC2019/CLI/MediaConch_CLI.rc
deleted file mode 100644
index ceb95cb7..00000000
--- a/Project/MSVC2019/CLI/MediaConch_CLI.rc
+++ /dev/null
@@ -1,32 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
diff --git a/Project/MSVC2019/GUI/MediaConch_GUI.rc b/Project/MSVC2019/GUI/MediaConch_GUI.rc
deleted file mode 100644
index 27a1577c..00000000
--- a/Project/MSVC2019/GUI/MediaConch_GUI.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
-
-//Icons
-aaaaaaaa ICON "../../../Source/Resource/Image/MediaConch.ico"
diff --git a/Project/MSVC2019/GUI/MediaConch_GUI.vcxproj b/Project/MSVC2019/GUI/MediaConch_GUI.vcxproj
deleted file mode 100644
index 3a3e1c81..00000000
--- a/Project/MSVC2019/GUI/MediaConch_GUI.vcxproj
+++ /dev/null
@@ -1,418 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}
- Win32Proj
- MediaConch_GUI
- MediaConch-GUI
-
-
-
- Application
- true
- v142
- Unicode
-
-
- Application
- true
- v142
- Unicode
-
-
- Application
- false
- v142
- Unicode
-
-
- Application
- false
- v142
- Unicode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtGui;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include
- MultiThreadedDebugDLL
- true
- false
-
-
- Windows
- ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\lib
- Qt5Cored.lib;Qt5Guid.lib;Qt5Xmld.lib;Qt5Widgetsd.lib;Qt5Networkd.lib;Qt5PrintSupportd.lib;Qt5WebChanneld.lib;Qt5WebEngined.lib;Qt5WebEngineWidgetsd.lib;qtmaind.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 $(OutDir) $(Configuration)
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtGui;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include
- MultiThreadedDebugDLL
- true
- false
-
-
- Windows
- ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\lib
- Qt5Cored.lib;Qt5Guid.lib;Qt5Xmld.lib;Qt5Widgetsd.lib;Qt5Networkd.lib;Qt5PrintSupportd.lib;Qt5WebChanneld.lib;Qt5WebEngined.lib;Qt5WebEngineWidgetsd.lib;qtmaind.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 $(OutDir) $(Configuration)
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtGui;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include
- MultiThreadedDLL
- true
- None
-
-
- Windows
- No
- true
- true
- ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\lib
- Qt5Core.lib;Qt5Gui.lib;Qt5Xml.lib;Qt5Widgets.lib;Qt5Network.lib;Qt5PrintSupport.lib;Qt5WebChannel.lib;Qt5WebEngine.lib;Qt5WebEngineWidgets.lib;qtmain.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 $(OutDir) $(Configuration)
-
-
-
-
-
-
- LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
-
-
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtGui;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include
- MultiThreadedDLL
- true
- None
-
-
- Windows
- No
- true
- true
- ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\lib
- Qt5Core.lib;Qt5Gui.lib;Qt5Xml.lib;Qt5Widgets.lib;Qt5Network.lib;Qt5PrintSupport.lib;Qt5WebChannel.lib;Qt5WebEngine.lib;Qt5WebEngineWidgets.lib;qtmain.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
-
-
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 Engine
-
-
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 $(OutDir) $(Configuration)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- true
- true
- true
-
-
- true
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
- Document
-
-
- Document
-
-
- Document
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Project/MSVC2019/GUI/MediaConch_GUI.vcxproj.filters b/Project/MSVC2019/GUI/MediaConch_GUI.vcxproj.filters
deleted file mode 100644
index 16c9bc64..00000000
--- a/Project/MSVC2019/GUI/MediaConch_GUI.vcxproj.filters
+++ /dev/null
@@ -1,547 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hh;hpp;hxx;hm;inl;inc;xsd
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
-
-
- {16615b4b-f6f6-4711-b84e-0c274ffe74bf}
-
-
- {905b9726-45c0-4a7d-96c8-4a9ef9fe1873}
-
-
- {4bbb3fb2-9002-40fd-8895-7484f292962a}
-
-
- {0346e935-23a9-493f-b58e-e8cbeee949d6}
-
-
- {38264c64-6e1e-4f5a-9906-a6c27769b269}
-
-
- {ca9be640-a193-4ba5-a1ea-2bbea3b077f4}
-
-
- {0d330ddd-8c38-4d7c-9944-c00240a228fb}
-
-
- {92bd129a-a825-4860-8967-4c4af26d195b}
-
-
- {bff903fc-cea8-42d5-be92-5b64b7dec2dd}
-
-
- {5b729284-5077-4411-b45a-98a762cd40c3}
-
-
-
-
- Resource Files
-
-
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- ThirdParty\sqlite
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
- Source Files\_Automated
-
-
- Source Files\Core
-
-
- Source Files\GUI
-
-
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\_Automated
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\_Automated
-
-
- Header Files\Core
-
-
- ThirdParty\sqlite
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\_Automated
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
- Header Files\GUI
-
-
- Header Files\Core
-
-
- Header Files\GUI
-
-
-
-
- Resource Files
-
-
- Resource Files\HTML
-
-
- Resource Files\HTML
-
-
- Resource Files\UI
-
-
- Resource Files\UI
-
-
- Resource Files\HTML
-
-
- Resource Files\HTML
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2019/GUI/Post-Build.bat b/Project/MSVC2019/GUI/Post-Build.bat
deleted file mode 100644
index 7070eae1..00000000
--- a/Project/MSVC2019/GUI/Post-Build.bat
+++ /dev/null
@@ -1,8 +0,0 @@
-if "%2"=="" echo "Post-Build.bat Qt_Dir Output_Dir" | find /v "0 "
-
-if not exist %1 (
-echo Missing Qt directory %1. Correct the Qt path in project properties: Include Directories, Library Directories, Pre-Build, Post-Build.
-%1\bin\windeployqt
-) else (
-%1\bin\windeployqt --release %2
-)
diff --git a/Project/MSVC2019/GUI/Pre-Build.bat b/Project/MSVC2019/GUI/Pre-Build.bat
deleted file mode 100644
index 4828e8b6..00000000
--- a/Project/MSVC2019/GUI/Pre-Build.bat
+++ /dev/null
@@ -1,9 +0,0 @@
-if "%2"=="" echo "Pre-Build.bat Qt_Dir Kit|Engine" | find /v "0 "
-
-if not exist %1 (
-echo Missing Qt directory %1. Correct the Qt path in project properties: Include Directories, Library Directories, Pre-Build, Post-Build.
-%1\bin\qmake
-) else (
-%1\bin\qmake ..\..\Qt\MediaConch.pro USE_WEB%2=1 2> nul
-nmake /NOLOGO /f Makefile.Release compiler_uic_make_all compiler_rcc_make_all mocables
-)
\ No newline at end of file
diff --git a/Project/MSVC2019/MediaConch.sln b/Project/MSVC2019/MediaConch.sln
deleted file mode 100644
index 1c885123..00000000
--- a/Project/MSVC2019/MediaConch.sln
+++ /dev/null
@@ -1,152 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 14
-VisualStudioVersion = 14.0.24720.0
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ThirdParty", "ThirdParty", "{70DAF034-E8BA-4636-A42C-CC581B3ECC94}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-CLI", "CLI\MediaConch.vcxproj", "{8A1AE679-131A-493C-86CA-91179B0955A4}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-GUI", "GUI\MediaConch_GUI.vcxproj", "{2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZenLib", "..\..\..\ZenLib\Project\MSVC2019\Library\ZenLib.vcxproj", "{0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaInfoLib", "..\..\..\MediaInfoLib\Project\MSVC2019\Library\MediaInfoLib.vcxproj", "{20E0F8D6-213C-460B-B361-9C725CB375C7}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaInfoDll", "..\..\..\MediaInfoLib\Project\MSVC2019\Dll\MediaInfoDll.vcxproj", "{BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxml2", "..\..\..\libxml2\win32\VC16\libxml2.vcxproj", "{1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "..\..\..\zlib\contrib\vstudio\vc16\zlibstat.vcxproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxslt", "..\..\..\libxslt\win32\VC16\libxslt\libxslt.vcxproj", "{F8C03828-5050-4E68-A7B4-41131F9049D7}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libexslt", "..\..\..\libxslt\win32\VC16\libexslt\libexslt.vcxproj", "{C66B92E2-E917-4556-84D9-6D32C10C3185}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MediaInfo", "MediaInfo", "{363ECBF5-3630-4FFB-B713-6C4F708FC425}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "event", "..\..\..\libevent\Contrib\VC16\event\event.vcxproj", "{F687C268-C5D7-36DF-80C4-641ED9C82BC8}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Jansson", "..\..\..\jansson\Contrib\VC16\Jansson\Jansson.vcxproj", "{40460A4D-243E-48DB-A2F6-F5C57ACDE134}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MediaConch-Server", "Server\MediaConch-Server.vcxproj", "{66830D9C-0A1E-4664-B846-F5DAEDB574E6}"
-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
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|Win32.ActiveCfg = Debug|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|Win32.Build.0 = Debug|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|x64.ActiveCfg = Debug|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Debug|x64.Build.0 = Debug|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|Win32.ActiveCfg = Release|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|Win32.Build.0 = Release|Win32
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|x64.ActiveCfg = Release|x64
- {8A1AE679-131A-493C-86CA-91179B0955A4}.Release|x64.Build.0 = Release|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|Win32.ActiveCfg = Debug|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|Win32.Build.0 = Debug|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|x64.ActiveCfg = Debug|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Debug|x64.Build.0 = Debug|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|Win32.ActiveCfg = Release|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|Win32.Build.0 = Release|Win32
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|x64.ActiveCfg = Release|x64
- {2D3D1642-D55D-4EF6-AEC8-B8E1B8F8B226}.Release|x64.Build.0 = Release|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|Win32.ActiveCfg = Debug|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|Win32.Build.0 = Debug|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|x64.ActiveCfg = Debug|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Debug|x64.Build.0 = Debug|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|Win32.ActiveCfg = Release|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|Win32.Build.0 = Release|Win32
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|x64.ActiveCfg = Release|x64
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94}.Release|x64.Build.0 = Release|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|Win32.ActiveCfg = Debug|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|Win32.Build.0 = Debug|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|x64.ActiveCfg = Debug|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Debug|x64.Build.0 = Debug|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|Win32.ActiveCfg = Release|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|Win32.Build.0 = Release|Win32
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|x64.ActiveCfg = Release|x64
- {20E0F8D6-213C-460B-B361-9C725CB375C7}.Release|x64.Build.0 = Release|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|Win32.ActiveCfg = Debug|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|Win32.Build.0 = Debug|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|x64.ActiveCfg = Debug|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Debug|x64.Build.0 = Debug|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|Win32.ActiveCfg = Release|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|Win32.Build.0 = Release|Win32
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|x64.ActiveCfg = Release|x64
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5}.Release|x64.Build.0 = Release|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|Win32.ActiveCfg = Debug|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|Win32.Build.0 = Debug|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|x64.ActiveCfg = Debug|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|x64.Build.0 = Debug|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|Win32.ActiveCfg = Release|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|Win32.Build.0 = Release|Win32
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|x64.ActiveCfg = Release|x64
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|x64.Build.0 = Release|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.ActiveCfg = Debug|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.Build.0 = Debug|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = ReleaseWithoutAsm|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = ReleaseWithoutAsm|Win32
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.ActiveCfg = ReleaseWithoutAsm|x64
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.Build.0 = ReleaseWithoutAsm|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|Win32.ActiveCfg = Debug|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|Win32.Build.0 = Debug|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|x64.ActiveCfg = Debug|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Debug|x64.Build.0 = Debug|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|Win32.ActiveCfg = Release|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|Win32.Build.0 = Release|Win32
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|x64.ActiveCfg = Release|x64
- {F8C03828-5050-4E68-A7B4-41131F9049D7}.Release|x64.Build.0 = Release|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|Win32.ActiveCfg = Debug|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|Win32.Build.0 = Debug|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|x64.ActiveCfg = Debug|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Debug|x64.Build.0 = Debug|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|Win32.ActiveCfg = Release|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|Win32.Build.0 = Release|Win32
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|x64.ActiveCfg = Release|x64
- {C66B92E2-E917-4556-84D9-6D32C10C3185}.Release|x64.Build.0 = Release|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|Win32.ActiveCfg = Debug|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|Win32.Build.0 = Debug|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|x64.ActiveCfg = Debug|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Debug|x64.Build.0 = Debug|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|Win32.ActiveCfg = Release|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|Win32.Build.0 = Release|Win32
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|x64.ActiveCfg = Release|x64
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8}.Release|x64.Build.0 = Release|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|Win32.ActiveCfg = Debug|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|Win32.Build.0 = Debug|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|x64.ActiveCfg = Debug|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Debug|x64.Build.0 = Debug|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|Win32.ActiveCfg = Release|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|Win32.Build.0 = Release|Win32
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|x64.ActiveCfg = Release|x64
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134}.Release|x64.Build.0 = Release|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|Win32.ActiveCfg = Debug|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|Win32.Build.0 = Debug|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|x64.ActiveCfg = Debug|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Debug|x64.Build.0 = Debug|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|Win32.ActiveCfg = Release|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|Win32.Build.0 = Release|Win32
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|x64.ActiveCfg = Release|x64
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}.Release|x64.Build.0 = Release|x64
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(NestedProjects) = preSolution
- {0DA1DA7D-F393-4E7C-A7CE-CB5C6A67BC94} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {20E0F8D6-213C-460B-B361-9C725CB375C7} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {BE6D3EF8-2F82-4F1E-956A-890C3614A2D5} = {363ECBF5-3630-4FFB-B713-6C4F708FC425}
- {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {F8C03828-5050-4E68-A7B4-41131F9049D7} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {C66B92E2-E917-4556-84D9-6D32C10C3185} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {F687C268-C5D7-36DF-80C4-641ED9C82BC8} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- {40460A4D-243E-48DB-A2F6-F5C57ACDE134} = {70DAF034-E8BA-4636-A42C-CC581B3ECC94}
- EndGlobalSection
-EndGlobal
diff --git a/Project/MSVC2019/Server/MediaConch-Server.rc b/Project/MSVC2019/Server/MediaConch-Server.rc
deleted file mode 100644
index ceb95cb7..00000000
--- a/Project/MSVC2019/Server/MediaConch-Server.rc
+++ /dev/null
@@ -1,32 +0,0 @@
-#include
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 24,06,0,0
- PRODUCTVERSION 24,06,0,0
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x40004L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0" // U.S. English (0x0409, 1033), Unicode (0x04B0, 1200)
- BEGIN
- VALUE "CompanyName", "MediaArea.net"
- VALUE "FileDescription", "Implementation checker, policy checker, reporter, and fixer"
- VALUE "FileVersion", "24.06.0.0"
- VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL"
- VALUE "ProductName", "MediaConch"
- VALUE "ProductVersion", "24.06.0.0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
diff --git a/Project/MSVC2019/Server/MediaConch-Server.vcxproj b/Project/MSVC2019/Server/MediaConch-Server.vcxproj
deleted file mode 100644
index b6ab6bed..00000000
--- a/Project/MSVC2019/Server/MediaConch-Server.vcxproj
+++ /dev/null
@@ -1,306 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- MediaConch-Server
- {66830D9C-0A1E-4664-B846-F5DAEDB574E6}
- Win32Proj
-
-
-
- Application
- true
- Unicode
- v142
-
-
- Application
- false
- Unicode
- v142
-
-
- Application
- true
- Unicode
- v142
-
-
- Application
- false
- Unicode
- v142
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
- $(SolutionDir)$(Platform)\$(Configuration)\
- $(Platform)\$(Configuration)\
-
-
-
-
-
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDebugDLL
- true
- Disabled
-
-
- Console
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- true
- Disabled
- None
- false
-
-
- Console
- true
- true
- MachineX86
- true
- No
-
-
-
-
- ../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC16/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\jansson\src;%(AdditionalIncludeDirectories)
- HAVE_JANSSON;HAVE_LIBEVENT;HAVE_SQLITE;LIBEXSLT_STATIC;LIBXSLT_STATIC;LIBXML_STATIC;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- Disabled
- None
- false
-
-
- Console
- true
- true
- MachineX64
- true
- No
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {40460a4d-243e-48db-a2f6-f5c57acde134}
-
-
- {f687c268-c5d7-36df-80c4-641ed9c82bc8}
-
-
- {1d6039f6-5078-416f-a3af-a36efc7e6a1c}
-
-
- {c66b92e2-e917-4556-84d9-6d32c10c3185}
-
-
- {f8c03828-5050-4e68-a7b4-41131f9049d7}
-
-
- {20e0f8d6-213c-460b-b361-9c725cb375c7}
-
-
- {0da1da7d-f393-4e7c-a7ce-cb5c6a67bc94}
-
-
- {745dec58-ebb3-47a9-a9b8-4c6627c01bf8}
-
-
-
-
-
-
diff --git a/Project/MSVC2019/Server/MediaConch-Server.vcxproj.filters b/Project/MSVC2019/Server/MediaConch-Server.vcxproj.filters
deleted file mode 100644
index 94135614..00000000
--- a/Project/MSVC2019/Server/MediaConch-Server.vcxproj.filters
+++ /dev/null
@@ -1,338 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {3ae77992-ac1e-4f84-9b70-b9b52ce3b46a}
-
-
- {04e8d873-200e-44c5-843e-432f681438f8}
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hpp;hxx;hm;inl;inc;xsd
-
-
- {4144b785-9e42-4b50-b521-d1f949969234}
-
-
- {0e3aa0e0-c270-4d91-87ae-50c30aad50c0}
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav
-
-
- {17d3f297-ae83-44c2-be09-2e2882b1565a}
-
-
- {3c62d1d8-29ba-45c4-8828-7a5e54664aa9}
-
-
-
-
- Source Files\Daemon
-
-
- Source Files\Daemon
-
-
- Source Files\Daemon
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- ThirdParty\sqlite
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
- Source Files\Common
-
-
-
-
- Header Files\Daemon
-
-
- Header Files\Daemon
-
-
- Header Files\Daemon
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- ThirdParty\sqlite
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
- Header Files\Common
-
-
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/Project/MSVC2022/GUI/MediaConch_GUI.vcxproj b/Project/MSVC2022/GUI/MediaConch_GUI.vcxproj
index 0b452bc4..e5e49f52 100644
--- a/Project/MSVC2022/GUI/MediaConch_GUI.vcxproj
+++ b/Project/MSVC2022/GUI/MediaConch_GUI.vcxproj
@@ -78,47 +78,45 @@
LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC17/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtGui;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include
+ ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC17/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source
MultiThreadedDebugDLL
true
false
Windows
- ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\lib
Qt5Cored.lib;Qt5Guid.lib;Qt5Xmld.lib;Qt5Widgetsd.lib;Qt5Networkd.lib;Qt5PrintSupportd.lib;Qt5WebChanneld.lib;Qt5WebEngined.lib;Qt5WebEngineWidgetsd.lib;qtmaind.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 Engine
+ Pre-Build.bat Engine
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 $(OutDir) $(Configuration)
+ Post-Build.bat $(OutDir) $(Configuration)
LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC17/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtGui;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include
+ ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC17/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source
MultiThreadedDebugDLL
true
false
Windows
- ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\lib
Qt5Cored.lib;Qt5Guid.lib;Qt5Xmld.lib;Qt5Widgetsd.lib;Qt5Networkd.lib;Qt5PrintSupportd.lib;Qt5WebChanneld.lib;Qt5WebEngined.lib;Qt5WebEngineWidgetsd.lib;qtmaind.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 Engine
+ Pre-Build.bat Engine
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 $(OutDir) $(Configuration)
+ Post-Build.bat $(OutDir) $(Configuration)
LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC17/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtGui;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\include
+ ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC17/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source
MultiThreadedDLL
true
None
@@ -128,14 +126,13 @@
No
true
true
- ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017\lib
Qt5Core.lib;Qt5Gui.lib;Qt5Xml.lib;Qt5Widgets.lib;Qt5Network.lib;Qt5PrintSupport.lib;Qt5WebChannel.lib;Qt5WebEngine.lib;Qt5WebEngineWidgets.lib;qtmain.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 Engine
+ Pre-Build.bat Engine
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017\5.9\msvc2017 $(OutDir) $(Configuration)
+ Post-Build.bat $(OutDir) $(Configuration)
@@ -145,7 +142,7 @@
LIBXML_STATIC;LIBXSLT_STATIC;LIBEXSLT_STATIC;HAVE_SQLITE;HAVE_JANSSON;HAVE_LIBEVENT;%(PreprocessorDefinitions)
- ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC17/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtGui;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngine;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineWidgets;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebEngineCore;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include/QtWebChannel;..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\include
+ ./_Automated;../../../Source;../../../Source/ThirdParty/sqlite;../../../../libevent/WIN32-Code/nmake;../../../../libevent/include;../../../../jansson/src;../../../../jansson/Contrib/VC17/Jansson;../../../../zlib;../../../../libxslt;../../../../libxml2/include;../../../../MediaInfoLib/Source;../../../../ZenLib/Source
MultiThreadedDLL
true
None
@@ -155,14 +152,13 @@
No
true
true
- ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64\lib
Qt5Core.lib;Qt5Gui.lib;Qt5Xml.lib;Qt5Widgets.lib;Qt5Network.lib;Qt5PrintSupport.lib;Qt5WebChannel.lib;Qt5WebEngine.lib;Qt5WebEngineWidgets.lib;qtmain.lib;winmm.lib;ws2_32.lib;imm32.lib;%(AdditionalDependencies)
- Pre-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 Engine
+ Pre-Build.bat Engine
- Post-Build.bat ..\..\..\..\Qt5.9-msvc2017_64\5.9\msvc2017_64 $(OutDir) $(Configuration)
+ Post-Build.bat $(OutDir) $(Configuration)
diff --git a/Project/MSVC2022/GUI/Post-Build.bat b/Project/MSVC2022/GUI/Post-Build.bat
index 7070eae1..51c0c808 100644
--- a/Project/MSVC2022/GUI/Post-Build.bat
+++ b/Project/MSVC2022/GUI/Post-Build.bat
@@ -1,8 +1,3 @@
-if "%2"=="" echo "Post-Build.bat Qt_Dir Output_Dir" | find /v "0 "
+if "%1"=="" echo "Post-Build.bat Output_Dir" | find /v "0 "
-if not exist %1 (
-echo Missing Qt directory %1. Correct the Qt path in project properties: Include Directories, Library Directories, Pre-Build, Post-Build.
-%1\bin\windeployqt
-) else (
-%1\bin\windeployqt --release %2
-)
+windeployqt --release %1
diff --git a/Project/MSVC2022/GUI/Pre-Build.bat b/Project/MSVC2022/GUI/Pre-Build.bat
index 4828e8b6..ef04d113 100644
--- a/Project/MSVC2022/GUI/Pre-Build.bat
+++ b/Project/MSVC2022/GUI/Pre-Build.bat
@@ -1,9 +1,4 @@
-if "%2"=="" echo "Pre-Build.bat Qt_Dir Kit|Engine" | find /v "0 "
+if "%1"=="" echo "Pre-Build.bat Kit|Engine" | find /v "0 "
-if not exist %1 (
-echo Missing Qt directory %1. Correct the Qt path in project properties: Include Directories, Library Directories, Pre-Build, Post-Build.
-%1\bin\qmake
-) else (
-%1\bin\qmake ..\..\Qt\MediaConch.pro USE_WEB%2=1 2> nul
-nmake /NOLOGO /f Makefile.Release compiler_uic_make_all compiler_rcc_make_all mocables
-)
\ No newline at end of file
+qmake ..\..\Qt\MediaConch.pro USE_WEB%1=1 2> nul
+nmake /NOLOGO /f Makefile.Release compiler_uic_make_all compiler_rcc_make_all mocables