diff --git a/.github/workflows/build_win.yml b/.github/workflows/build_win.yml
index 783084c1ae..820886bbcb 100644
--- a/.github/workflows/build_win.yml
+++ b/.github/workflows/build_win.yml
@@ -5,11 +5,26 @@ on:
jobs:
build_ifcopenshell:
- runs-on: windows-2022
strategy:
fail-fast: false
matrix:
- arch: ['x64']
+ include:
+ - arch: x64
+ runs_on: windows-2022
+ deps_dir: _deps-vs2022-x64-installed
+ vcvars: '"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"'
+ arch: x64
+ zip_suffix: win64
+
+ - arch: ARM64
+ runs_on: windows-11-arm
+ deps_dir: _deps-vs2022-ARM64-installed
+ vcvars: '"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsarm64.bat"'
+ arch: arm64
+ zip_suffix: win-arm64
+
+ runs-on: ${{ matrix.runs_on }}
+
steps:
- name: Checkout Repository
uses: actions/checkout@v6
@@ -20,7 +35,7 @@ jobs:
uses: actions/checkout@v6
with:
repository: IfcOpenShell/build-outputs
- path: _deps-vs2022-x64-installed
+ path: ${{ matrix.deps_dir }}
ref: windows-${{ matrix.arch }}
lfs: true
token: ${{ secrets.BUILD_REPO_TOKEN }}
@@ -31,7 +46,7 @@ jobs:
- name: Unpack Dependencies
run: |
- cd _deps-vs2022-x64-installed
+ cd ${{ matrix.deps_dir }}
Get-ChildItem -Path . -Filter 'cache-*.zip' | ForEach-Object {
7z x $_.FullName
}
@@ -46,14 +61,16 @@ jobs:
- name: Run Build Script And Pack .zip Archives
shell: cmd
+ env:
+ TARGET_ARCH: ${{ matrix.arch }} # lets the Python script know which arch to target (optional override)
run: |
- call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
+ call ${{ matrix.vcvars }}
cd win
python build-all-win.py
- name: Pack Dependencies
run: |
- cd _deps-vs2022-x64-installed
+ cd ${{ matrix.deps_dir }}
Get-ChildItem -Path . -Directory | ForEach-Object {
$cacheFile = "cache-$($_.Name).zip"
echo $cacheFile
@@ -64,12 +81,13 @@ jobs:
- name: Commit and Push Changes to Build Repository
run: |
- cd _deps-vs2022-x64-installed
+ cd ${{ matrix.deps_dir }}
git config user.name "IfcOpenBot"
git config user.email "ifcopenbot@ifcopenshell.org"
+ git checkout -B ${{ matrix.build_branch }}
git add *.zip
- git commit -m "Update build artifacts [skip ci]" || echo "No changes to commit"
- git push || echo "Push failed"
+ git commit -m "Update ARM64 build caches [skip ci]" || echo "No changes to commit"
+ git push --set-upstream origin ${{ matrix.build_branch }} || echo "Push failed"
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v6
@@ -88,4 +106,4 @@ jobs:
foreach ($zip in Get-ChildItem -Path "$env:USERPROFILE\output" -Filter *.zip) {
aws s3 cp "$($zip.FullName)" s3://ifcopenshell-builds/ --debug
Start-Sleep -Seconds 5
- }
+ }
\ No newline at end of file
diff --git a/win/build-all-win.py b/win/build-all-win.py
index e1bd5cccdf..caf8bcdf5d 100644
--- a/win/build-all-win.py
+++ b/win/build-all-win.py
@@ -9,6 +9,15 @@ import subprocess
import zipfile
from pathlib import Path
from zipfile import ZipFile
+import platform
+
+def is_arm64() -> bool:
+ arch = os.environ.get("TARGET_ARCH", "").lower()
+ if arch in ("arm64", "aarch64"):
+ return True
+ if arch in ("x64", "amd64", "x86_64"):
+ return False
+ return platform.machine().lower() in ("arm64", "aarch64")
assert Path.cwd() == Path(__file__).parent, "Run this script from the 'win' directory."
@@ -23,7 +32,7 @@ else:
OUTPUT_DIR = Path.home() / "output"
OUTPUT_DIR.mkdir(exist_ok=True)
print("Output directory:", OUTPUT_DIR)
-ZIP_TEMPLATE = f"{{package_name}}-v{VERSION}-{SHA}-win64.zip"
+ZIP_TEMPLATE = f"{{package_name}}-v{VERSION}-{SHA}-{'win-arm64' if is_arm64() else 'win64'}.zip"
def run(command: list[str]) -> None:
@@ -52,7 +61,11 @@ def build() -> None:
os.environ["PYTHON_VERSION"] = python_version
print(f"Building for Python {python_version}...")
subprocess.run(
- [str(REPO_WIN / "build-deps.cmd"), "vs2022-x64", "Release"],
+ [
+ str(REPO_WIN / "build-deps.cmd"),
+ "vs2022-ARM64" if is_arm64() else "vs2022-x64",
+ "Release",
+ ],
check=True,
text=True,
input="y\n",
@@ -61,13 +74,13 @@ def build() -> None:
run(
[
str(REPO_WIN / "run-cmake.bat"),
- "vs2022-x64",
+ "vs2022-ARM64" if is_arm64() else "vs2022-x64",
"-DENABLE_BUILD_OPTIMIZATIONS=ON",
"-DGLTF_SUPPORT=ON",
]
)
restore_env(*OLD_ADD_COMMIT_SHA)
- run([str(REPO_WIN / "install-ifcopenshell.bat"), "vs2022-x64", "Release"])
+ run([str(REPO_WIN / "install-ifcopenshell.bat"), "vs2022-ARM64" if is_arm64() else "vs2022-x64", "Release"])
def archive_executables() -> None:
diff --git a/win/build-deps.cmd b/win/build-deps.cmd
index 811f381f19..a67bac92c3 100644
--- a/win/build-deps.cmd
+++ b/win/build-deps.cmd
@@ -132,7 +132,7 @@ call cecho.cmd 0 10 "Script configuration:"
call cecho.cmd 0 13 "* CMake Generator`t= '`"%GENERATOR%`'`t
echo - Passed to CMake -G option.
call cecho.cmd 0 13 "* Target Architecture`t= %TARGET_ARCH%"
-echo - Whether were doing 32-bit (x86) or 64-bit (x64) build.
+echo - Whether were doing 32-bit (x86) or 64-bit (x64, arm64) build.
call cecho.cmd 0 13 "* Target Platform`t= %VS_PLATFORM%"
echo - Passed to CMake -A option.
call cecho.cmd 0 13 "* Target Toolset`t= %VS_TOOLSET%"
@@ -187,8 +187,15 @@ IF DEFINED PYTHON_VERSION (
)
:: VERSION DERIVATIONS
+for /f "tokens=1,2,3 delims=." %%a in ("%PYTHON_VERSION%") do (
+ set PY_VER_MAJOR_MINOR=%%a%%b
+)
IF "%IFCOS_INSTALL_PYTHON%"=="TRUE" (
- set PYTHONHOME=%DEPS_DIR%\python.%PYTHON_VERSION%\tools
+ IF /I "%TARGET_ARCH%"=="arm64" (
+ set PYTHONHOME=%DEPS_DIR%\pythonarm64.%PYTHON_VERSION%\tools
+ ) ELSE (
+ set PYTHONHOME=%DEPS_DIR%\python.%PYTHON_VERSION%\tools
+ )
)
:: Cache last used CMake generator and configurable dependency dirs for other scripts to use
@@ -312,6 +319,11 @@ powershell -c "get-content %~dp0patches\mpir.patch | %%{$_ -replace \"sdk\",\"%U
IF NOT %ERRORLEVEL%==0 GOTO :Error
if NOT "%USE_STATIC_RUNTIME%"=="FALSE" git apply "%~dp0patches\mpir_runtime.patch" --unidiff-zero --ignore-whitespace
IF NOT %ERRORLEVEL%==0 GOTO :Error
+IF /I "%VS_PLATFORM%"=="ARM64" (
+ echo "Applying ARM64 Patches for Mpir"
+ git apply "%~dp0patches\mpir-arm64-changes.patch" --unidiff-zero --ignore-whitespace
+)
+IF NOT %ERRORLEVEL%==0 GOTO :Error
cd msvc
cd vs%VS_VER:~2,2%
call .\msbuild.bat gc LIB %VS_PLATFORM% %DEBUG_OR_RELEASE%
@@ -338,6 +350,10 @@ powershell -c "get-content %~dp0patches\mpfr.patch | %%{$_ -replace \"sdk\",\"%U
IF NOT %ERRORLEVEL%==0 GOTO :Error
if NOT "%USE_STATIC_RUNTIME%"=="FALSE" git apply "%~dp0patches\mpfr_runtime.patch" --unidiff-zero --ignore-whitespace
IF NOT %ERRORLEVEL%==0 GOTO :Error
+IF /I "%VS_PLATFORM%"=="ARM64" (
+ echo "Applying ARM64 Patches for Mpfr"
+ git apply "%~dp0patches\mpfr-arm64-changes.patch" --unidiff-zero --ignore-whitespace
+)
if "%VS_VER%"=="2017" (
set mpfr_sln=build.vc15
set orig_platform_toolset=v141
@@ -406,6 +422,7 @@ cd "%DEPS_DIR%"
call :DownloadFile https://github.com/boostorg/boost/releases/download/boost-%BOOST_VERSION%/%BOOST_ZIP% "%DEPS_DIR%" %BOOST_ZIP%
IF NOT %ERRORLEVEL%==0 GOTO :Error
+cd "%DEPS_DIR%"
call :ExtractArchive %BOOST_ZIP% "%DEPS_DIR%" %DEPENDENCY_DIR%
IF NOT %ERRORLEVEL%==0 GOTO :Error
@@ -429,13 +446,22 @@ if not exist "%DEPENDENCY_DIR%\project-config.jam". (
IF NOT %ERRORLEVEL%==0 GOTO :Error
)
+if /I "%TARGET_ARCH%"=="x64" (
+ set B2_ARCH_FEATURE=x86
+) else if /I "%TARGET_ARCH%"=="arm64" (
+ set B2_ARCH_FEATURE=arm
+) else (
+ echo "Failed to identify architecture"
+ GOTO :Error
+)
+
set BOOST_LIBS=--with-system --with-regex --with-thread --with-program_options --with-date_time --with-iostreams --with-filesystem
:: NOTE Boost is fast to build with limited set of libraries so build it always.
cd "%DEPENDENCY_DIR%"
call cecho.cmd 0 13 "Building %DEPENDENCY_NAME% %BOOST_LIBS% Please be patient, this will take a while."
IF EXIST "%DEPENDENCY_DIR%\bin.v2\project-cache.jam" del "%DEPENDENCY_DIR%\bin.v2\project-cache.jam"
-call .\b2 toolset=%BOOST_TOOLSET% runtime-link=shared address-model=%ARCH_BITS% --abbreviate-paths -j%IFCOS_NUM_BUILD_PROCS% ^
+call .\b2 toolset=%BOOST_TOOLSET% architecture=%B2_ARCH_FEATURE% runtime-link=shared address-model=%ARCH_BITS% --abbreviate-paths -j%IFCOS_NUM_BUILD_PROCS% ^
variant=%DEBUG_OR_RELEASE_LOWERCASE% %BOOST_WIN_API% %BOOST_LIBS% stage --stagedir=%DEPENDENCY_INSTALL_DIR%
IF NOT %ERRORLEVEL%==0 GOTO :Error
@@ -561,9 +587,10 @@ SET COMPILE_WITH_WPO=FALSE
:Python
set DEPENDENCY_NAME=Python %PYTHON_VERSION%
set DEPENDENCY_DIR=N/A
-set PYTHON_AMD64_POSTFIX=-amd64
-IF NOT %TARGET_ARCH%==x64 set PYTHON_AMD64_POSTFIX=
-set PYTHON_INSTALLER=python-%PYTHON_VERSION%%PYTHON_AMD64_POSTFIX%.exe
+set PYTHON_AMD64_POSTFIX=
+IF /I "%TARGET_ARCH%"=="x64" set "PYTHON_AMD64_POSTFIX=-amd64"
+IF /I "%TARGET_ARCH%"=="arm64" set "PYTHON_AMD64_POSTFIX=-arm64"
+set "PYTHON_INSTALLER=python-%PYTHON_VERSION%%PYTHON_AMD64_POSTFIX%.exe"
IF NOT "%IFCOS_INSTALL_PYTHON%"=="TRUE" (
call cecho.cmd 0 13 "IFCOS_INSTALL_PYTHON not 'TRUE', skipping installation of Python."
@@ -571,22 +598,25 @@ IF NOT "%IFCOS_INSTALL_PYTHON%"=="TRUE" (
)
:: nuget doesn't support providing architecture for packages.
-if NOT %TARGET_ARCH%==x64 (
+IF /I NOT "%TARGET_ARCH%"=="x64" IF /I NOT "%TARGET_ARCH%"=="arm64" (
call cecho.cmd 0 12 "Automatic insallation of Python for x86 builds is not supported,"
call cecho.cmd 0 12 "please install Python %PYTHON_VERSION% manually and ensure that it is available in PATH."
call cecho.cmd 0 12 "https://www.python.org/ftp/python/%PYTHON_VERSION%/%PYTHON_INSTALLER%"
goto :Error
)
-
if EXIST "%PYTHONHOME%" (
echo Found existing '%PYTHONHOME%', skipping installation.
goto :SWIG
)
-"%NUGET_EXE%" install Python -Version %PYTHON_VERSION% -OutputDirectory "%DEPS_DIR%"
-IF NOT %ERRORLEVEL%==0 GOTO :Error
-
+IF /I "%TARGET_ARCH%"=="x64" (
+ "%NUGET_EXE%" install Python -Version %PYTHON_VERSION% -OutputDirectory "%DEPS_DIR%"
+ IF NOT %ERRORLEVEL%==0 GOTO :Error
+) ELSE (
+ "%NUGET_EXE%" install pythonarm64 -Version %PYTHON_VERSION% -OutputDirectory "%DEPS_DIR%"
+ IF NOT %ERRORLEVEL%==0 GOTO :Error
+)
:SWIG
set DEPENDENCY_NAME=SWIG
@@ -723,6 +753,9 @@ call :RunCMake -DCMAKE_INSTALL_PREFIX="%INSTALL_DIR%\%DEPENDENCY_INSTALL_NAME%"
-DWITH_CORE_TOOLS=OFF ^
-DROCKSDB_BUILD_SHARED=OFF ^
-DWITH_ZSTD=On ^
+ -DZSTD_INCLUDE_DIR="%ZSTD_INCLUDE%" ^
+ -DZSTD_LIBRARY_DEBUG="%ZSTD_LIB_DEBUG%" ^
+ -DZSTD_LIBRARY_RELEASE="%ZSTD_LIB_RELEASE%" ^
-DPORTABLE=1 ^
-DCMAKE_DEBUG_POSTFIX="_d"
IF NOT %ERRORLEVEL%==0 GOTO :Error
@@ -960,4 +993,3 @@ echo - https://msdn.microsoft.com/en-us/library/ms229859(v=vs.110).aspx
echo.
echo NB: This script needs to be ran from the directory directly containing it.
echo.
-
diff --git a/win/patches/mpfr-arm64-changes.patch b/win/patches/mpfr-arm64-changes.patch
new file mode 100644
index 0000000000..82f7bbbbd6
--- /dev/null
+++ b/win/patches/mpfr-arm64-changes.patch
@@ -0,0 +1,26854 @@
+diff --git a/build.vs19/bench_lib/bench_lib.vcxproj b/build.vs19/bench_lib/bench_lib.vcxproj
+index ceaf5abf..3447b804 100644
+--- a/build.vs19/bench_lib/bench_lib.vcxproj
++++ b/build.vs19/bench_lib/bench_lib.vcxproj
+@@ -1,10 +1,18 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -32,6 +40,12 @@
+ v142
+ Unicode
+
++
++ Application
++ true
++ v142
++ Unicode
++
+
+ Application
+ false
+@@ -39,6 +53,13 @@
+ true
+ Unicode
+
++
++ Application
++ false
++ v142
++ true
++ Unicode
++
+
+ Application
+ true
+@@ -60,9 +81,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -78,6 +105,11 @@
+ $(SolutionDir)$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
++
++ true
++ $(SolutionDir)$(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
++
+
+ true
+
+@@ -86,6 +118,11 @@
+ $(SolutionDir)$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
++
++ false
++ $(SolutionDir)$(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
++
+
+
+ Level3
+@@ -118,6 +155,20 @@
+ ..\..\lib\$(IntDir)\mpfr.lib;..\..\..\mpir\lib\$(IntDir)\mpir.lib;%(AdditionalDependencies)
+
+
++
++
++
++
++ Level3
++ Disabled
++ WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
++ ..\..\src;..\..\..\mpir
++
++
++ Console
++ ..\..\lib\$(IntDir)\mpfr.lib;..\..\..\mpir\lib\$(IntDir)\mpir.lib;%(AdditionalDependencies)
++
++
+
+
+
+@@ -150,6 +201,24 @@
+ ..\..\lib\$(IntDir)\mpfr.lib;..\..\..\mpir\lib\$(IntDir)\mpir.lib;%(AdditionalDependencies)
+
+
++
++
++ Level3
++
++
++ MaxSpeed
++ true
++ true
++ WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
++ ..\..\src;..\..\..\mpir
++
++
++ Console
++ true
++ true
++ ..\..\lib\$(IntDir)\mpfr.lib;..\..\..\mpir\lib\$(IntDir)\mpir.lib;%(AdditionalDependencies)
++
++
+
+
+
+diff --git a/build.vs19/lib_mpfr.sln b/build.vs19/lib_mpfr.sln
+index c4444383..f30891b2 100644
+--- a/build.vs19/lib_mpfr.sln
++++ b/build.vs19/lib_mpfr.sln
+@@ -1,7 +1,7 @@
+
+ Microsoft Visual Studio Solution File, Format Version 12.00
+-# Visual Studio 15
+-VisualStudioVersion = 15.0.27130.0
++# Visual Studio Version 17
++VisualStudioVersion = 17.14.36429.23 d17.14
+ MinimumVisualStudioVersion = 10.0.40219.1
+ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lib_mpfr_tests", "lib_mpfr_tests", "{610C8F32-024C-4868-B514-3F2C9AFCE83F}"
+ EndProject
+@@ -1098,1504 +1098,2254 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttotal_order", "lib_mpfr_te
+ EndProject
+ Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
++ Debug|ARM64 = Debug|ARM64
+ Debug|Win32 = Debug|Win32
+ Debug|x64 = Debug|x64
++ Release|ARM64 = Release|ARM64
+ Release|Win32 = Release|Win32
+ Release|x64 = Release|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
++ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Debug|ARM64.Build.0 = Debug|ARM64
+ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Debug|Win32.Build.0 = Debug|Win32
+ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Debug|x64.ActiveCfg = Debug|x64
+ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Debug|x64.Build.0 = Debug|x64
++ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Release|ARM64.ActiveCfg = Release|ARM64
++ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Release|ARM64.Build.0 = Release|ARM64
+ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Release|Win32.ActiveCfg = Release|Win32
+ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Release|Win32.Build.0 = Release|Win32
+ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Release|x64.ActiveCfg = Release|x64
+ {96DA1C71-3895-49FA-A4F1-2775C650AF3D}.Release|x64.Build.0 = Release|x64
++ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Debug|Win32.Build.0 = Debug|Win32
+ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Debug|x64.ActiveCfg = Debug|x64
+ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Debug|x64.Build.0 = Debug|x64
++ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Release|ARM64.Build.0 = Release|ARM64
+ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Release|Win32.ActiveCfg = Release|Win32
+ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Release|Win32.Build.0 = Release|Win32
+ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Release|x64.ActiveCfg = Release|x64
+ {D40DAE6F-7CDB-4845-AE8C-BE9A9E7E6E0F}.Release|x64.Build.0 = Release|x64
++ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Debug|ARM64.Build.0 = Debug|ARM64
+ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Debug|Win32.Build.0 = Debug|Win32
+ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Debug|x64.ActiveCfg = Debug|x64
+ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Debug|x64.Build.0 = Debug|x64
++ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Release|ARM64.ActiveCfg = Release|ARM64
++ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Release|ARM64.Build.0 = Release|ARM64
+ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Release|Win32.ActiveCfg = Release|Win32
+ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Release|Win32.Build.0 = Release|Win32
+ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Release|x64.ActiveCfg = Release|x64
+ {DA42D428-8779-45CA-825A-BE7BE71336EC}.Release|x64.Build.0 = Release|x64
++ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Debug|ARM64.Build.0 = Debug|ARM64
+ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Debug|Win32.Build.0 = Debug|Win32
+ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Debug|x64.ActiveCfg = Debug|x64
+ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Debug|x64.Build.0 = Debug|x64
++ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Release|ARM64.ActiveCfg = Release|ARM64
++ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Release|ARM64.Build.0 = Release|ARM64
+ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Release|Win32.ActiveCfg = Release|Win32
+ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Release|Win32.Build.0 = Release|Win32
+ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Release|x64.ActiveCfg = Release|x64
+ {92BCDA65-6B9B-4447-AA93-C47B460194AD}.Release|x64.Build.0 = Release|x64
++ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Debug|ARM64.Build.0 = Debug|ARM64
+ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Debug|Win32.ActiveCfg = Debug|Win32
+ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Debug|Win32.Build.0 = Debug|Win32
+ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Debug|x64.ActiveCfg = Debug|x64
+ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Debug|x64.Build.0 = Debug|x64
++ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Release|ARM64.ActiveCfg = Release|ARM64
++ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Release|ARM64.Build.0 = Release|ARM64
+ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Release|Win32.ActiveCfg = Release|Win32
+ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Release|Win32.Build.0 = Release|Win32
+ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Release|x64.ActiveCfg = Release|x64
+ {09BDA649-C94B-47FA-83AF-5DB9A6AA8983}.Release|x64.Build.0 = Release|x64
++ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Debug|ARM64.Build.0 = Debug|ARM64
+ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Debug|Win32.Build.0 = Debug|Win32
+ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Debug|x64.ActiveCfg = Debug|x64
+ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Debug|x64.Build.0 = Debug|x64
++ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Release|ARM64.ActiveCfg = Release|ARM64
++ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Release|ARM64.Build.0 = Release|ARM64
+ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Release|Win32.ActiveCfg = Release|Win32
+ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Release|Win32.Build.0 = Release|Win32
+ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Release|x64.ActiveCfg = Release|x64
+ {09681D3D-E6F5-4B5E-8CC8-B65E6A63D43B}.Release|x64.Build.0 = Release|x64
++ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Debug|ARM64.Build.0 = Debug|ARM64
+ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Debug|Win32.Build.0 = Debug|Win32
+ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Debug|x64.ActiveCfg = Debug|x64
+ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Debug|x64.Build.0 = Debug|x64
++ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Release|ARM64.ActiveCfg = Release|ARM64
++ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Release|ARM64.Build.0 = Release|ARM64
+ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Release|Win32.ActiveCfg = Release|Win32
+ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Release|Win32.Build.0 = Release|Win32
+ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Release|x64.ActiveCfg = Release|x64
+ {017724C7-107D-4E09-AB81-635C22A1B4DF}.Release|x64.Build.0 = Release|x64
++ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Debug|ARM64.Build.0 = Debug|ARM64
+ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Debug|Win32.Build.0 = Debug|Win32
+ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Debug|x64.ActiveCfg = Debug|x64
+ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Debug|x64.Build.0 = Debug|x64
++ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Release|ARM64.ActiveCfg = Release|ARM64
++ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Release|ARM64.Build.0 = Release|ARM64
+ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Release|Win32.ActiveCfg = Release|Win32
+ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Release|Win32.Build.0 = Release|Win32
+ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Release|x64.ActiveCfg = Release|x64
+ {366F59FE-A9B7-426E-9199-99BBAAA548FE}.Release|x64.Build.0 = Release|x64
++ {FA416777-D0A2-4636-A7E1-35708380538C}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {FA416777-D0A2-4636-A7E1-35708380538C}.Debug|ARM64.Build.0 = Debug|ARM64
+ {FA416777-D0A2-4636-A7E1-35708380538C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FA416777-D0A2-4636-A7E1-35708380538C}.Debug|Win32.Build.0 = Debug|Win32
+ {FA416777-D0A2-4636-A7E1-35708380538C}.Debug|x64.ActiveCfg = Debug|x64
+ {FA416777-D0A2-4636-A7E1-35708380538C}.Debug|x64.Build.0 = Debug|x64
++ {FA416777-D0A2-4636-A7E1-35708380538C}.Release|ARM64.ActiveCfg = Release|ARM64
++ {FA416777-D0A2-4636-A7E1-35708380538C}.Release|ARM64.Build.0 = Release|ARM64
+ {FA416777-D0A2-4636-A7E1-35708380538C}.Release|Win32.ActiveCfg = Release|Win32
+ {FA416777-D0A2-4636-A7E1-35708380538C}.Release|Win32.Build.0 = Release|Win32
+ {FA416777-D0A2-4636-A7E1-35708380538C}.Release|x64.ActiveCfg = Release|x64
+ {FA416777-D0A2-4636-A7E1-35708380538C}.Release|x64.Build.0 = Release|x64
++ {8E87763F-3C5F-4902-9328-3872F425447C}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {8E87763F-3C5F-4902-9328-3872F425447C}.Debug|ARM64.Build.0 = Debug|ARM64
+ {8E87763F-3C5F-4902-9328-3872F425447C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8E87763F-3C5F-4902-9328-3872F425447C}.Debug|Win32.Build.0 = Debug|Win32
+ {8E87763F-3C5F-4902-9328-3872F425447C}.Debug|x64.ActiveCfg = Debug|x64
+ {8E87763F-3C5F-4902-9328-3872F425447C}.Debug|x64.Build.0 = Debug|x64
++ {8E87763F-3C5F-4902-9328-3872F425447C}.Release|ARM64.ActiveCfg = Release|ARM64
++ {8E87763F-3C5F-4902-9328-3872F425447C}.Release|ARM64.Build.0 = Release|ARM64
+ {8E87763F-3C5F-4902-9328-3872F425447C}.Release|Win32.ActiveCfg = Release|Win32
+ {8E87763F-3C5F-4902-9328-3872F425447C}.Release|Win32.Build.0 = Release|Win32
+ {8E87763F-3C5F-4902-9328-3872F425447C}.Release|x64.ActiveCfg = Release|x64
+ {8E87763F-3C5F-4902-9328-3872F425447C}.Release|x64.Build.0 = Release|x64
++ {A541016C-6F8A-4314-86D4-AC95878294DD}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {A541016C-6F8A-4314-86D4-AC95878294DD}.Debug|ARM64.Build.0 = Debug|ARM64
+ {A541016C-6F8A-4314-86D4-AC95878294DD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A541016C-6F8A-4314-86D4-AC95878294DD}.Debug|Win32.Build.0 = Debug|Win32
+ {A541016C-6F8A-4314-86D4-AC95878294DD}.Debug|x64.ActiveCfg = Debug|x64
+ {A541016C-6F8A-4314-86D4-AC95878294DD}.Debug|x64.Build.0 = Debug|x64
++ {A541016C-6F8A-4314-86D4-AC95878294DD}.Release|ARM64.ActiveCfg = Release|ARM64
++ {A541016C-6F8A-4314-86D4-AC95878294DD}.Release|ARM64.Build.0 = Release|ARM64
+ {A541016C-6F8A-4314-86D4-AC95878294DD}.Release|Win32.ActiveCfg = Release|Win32
+ {A541016C-6F8A-4314-86D4-AC95878294DD}.Release|Win32.Build.0 = Release|Win32
+ {A541016C-6F8A-4314-86D4-AC95878294DD}.Release|x64.ActiveCfg = Release|x64
+ {A541016C-6F8A-4314-86D4-AC95878294DD}.Release|x64.Build.0 = Release|x64
++ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Debug|ARM64.Build.0 = Debug|ARM64
+ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Debug|Win32.Build.0 = Debug|Win32
+ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Debug|x64.ActiveCfg = Debug|x64
+ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Debug|x64.Build.0 = Debug|x64
++ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Release|ARM64.ActiveCfg = Release|ARM64
++ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Release|ARM64.Build.0 = Release|ARM64
+ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Release|Win32.ActiveCfg = Release|Win32
+ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Release|Win32.Build.0 = Release|Win32
+ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Release|x64.ActiveCfg = Release|x64
+ {1D0FB421-6CEF-4C99-9778-587EE917CDD9}.Release|x64.Build.0 = Release|x64
++ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Debug|Win32.Build.0 = Debug|Win32
+ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Debug|x64.ActiveCfg = Debug|x64
+ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Debug|x64.Build.0 = Debug|x64
++ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Release|ARM64.Build.0 = Release|ARM64
+ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Release|Win32.ActiveCfg = Release|Win32
+ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Release|Win32.Build.0 = Release|Win32
+ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Release|x64.ActiveCfg = Release|x64
+ {EAE91382-3BDE-45F9-B784-47228C572B3F}.Release|x64.Build.0 = Release|x64
++ {FEC1769E-F942-4564-892C-CF5A68967153}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {FEC1769E-F942-4564-892C-CF5A68967153}.Debug|ARM64.Build.0 = Debug|ARM64
+ {FEC1769E-F942-4564-892C-CF5A68967153}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FEC1769E-F942-4564-892C-CF5A68967153}.Debug|Win32.Build.0 = Debug|Win32
+ {FEC1769E-F942-4564-892C-CF5A68967153}.Debug|x64.ActiveCfg = Debug|x64
+ {FEC1769E-F942-4564-892C-CF5A68967153}.Debug|x64.Build.0 = Debug|x64
++ {FEC1769E-F942-4564-892C-CF5A68967153}.Release|ARM64.ActiveCfg = Release|ARM64
++ {FEC1769E-F942-4564-892C-CF5A68967153}.Release|ARM64.Build.0 = Release|ARM64
+ {FEC1769E-F942-4564-892C-CF5A68967153}.Release|Win32.ActiveCfg = Release|Win32
+ {FEC1769E-F942-4564-892C-CF5A68967153}.Release|Win32.Build.0 = Release|Win32
+ {FEC1769E-F942-4564-892C-CF5A68967153}.Release|x64.ActiveCfg = Release|x64
+ {FEC1769E-F942-4564-892C-CF5A68967153}.Release|x64.Build.0 = Release|x64
++ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Debug|ARM64.Build.0 = Debug|ARM64
+ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Debug|Win32.Build.0 = Debug|Win32
+ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Debug|x64.ActiveCfg = Debug|x64
+ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Debug|x64.Build.0 = Debug|x64
++ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Release|ARM64.ActiveCfg = Release|ARM64
++ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Release|ARM64.Build.0 = Release|ARM64
+ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Release|Win32.ActiveCfg = Release|Win32
+ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Release|Win32.Build.0 = Release|Win32
+ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Release|x64.ActiveCfg = Release|x64
+ {034672AB-E2D5-4CB9-9A27-77E5B9037B5E}.Release|x64.Build.0 = Release|x64
++ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Debug|ARM64.Build.0 = Debug|ARM64
+ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Debug|Win32.Build.0 = Debug|Win32
+ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Debug|x64.ActiveCfg = Debug|x64
+ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Debug|x64.Build.0 = Debug|x64
++ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Release|ARM64.ActiveCfg = Release|ARM64
++ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Release|ARM64.Build.0 = Release|ARM64
+ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Release|Win32.ActiveCfg = Release|Win32
+ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Release|Win32.Build.0 = Release|Win32
+ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Release|x64.ActiveCfg = Release|x64
+ {FE6341F9-E211-45EA-92B4-D5784A53447B}.Release|x64.Build.0 = Release|x64
++ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Debug|ARM64.Build.0 = Debug|ARM64
+ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Debug|Win32.Build.0 = Debug|Win32
+ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Debug|x64.ActiveCfg = Debug|x64
+ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Debug|x64.Build.0 = Debug|x64
++ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Release|ARM64.ActiveCfg = Release|ARM64
++ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Release|ARM64.Build.0 = Release|ARM64
+ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Release|Win32.ActiveCfg = Release|Win32
+ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Release|Win32.Build.0 = Release|Win32
+ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Release|x64.ActiveCfg = Release|x64
+ {D75E6142-D7D7-4F85-9D58-77BCD6B64F99}.Release|x64.Build.0 = Release|x64
++ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Debug|Win32.Build.0 = Debug|Win32
+ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Debug|x64.ActiveCfg = Debug|x64
+ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Debug|x64.Build.0 = Debug|x64
++ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Release|ARM64.Build.0 = Release|ARM64
+ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Release|Win32.ActiveCfg = Release|Win32
+ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Release|Win32.Build.0 = Release|Win32
+ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Release|x64.ActiveCfg = Release|x64
+ {F49E86B3-8F94-4CDE-95A3-B1D895A3D86F}.Release|x64.Build.0 = Release|x64
++ {5496E6C5-E041-4FE5-9414-4A0121212452}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {5496E6C5-E041-4FE5-9414-4A0121212452}.Debug|ARM64.Build.0 = Debug|ARM64
+ {5496E6C5-E041-4FE5-9414-4A0121212452}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5496E6C5-E041-4FE5-9414-4A0121212452}.Debug|Win32.Build.0 = Debug|Win32
+ {5496E6C5-E041-4FE5-9414-4A0121212452}.Debug|x64.ActiveCfg = Debug|x64
+ {5496E6C5-E041-4FE5-9414-4A0121212452}.Debug|x64.Build.0 = Debug|x64
++ {5496E6C5-E041-4FE5-9414-4A0121212452}.Release|ARM64.ActiveCfg = Release|ARM64
++ {5496E6C5-E041-4FE5-9414-4A0121212452}.Release|ARM64.Build.0 = Release|ARM64
+ {5496E6C5-E041-4FE5-9414-4A0121212452}.Release|Win32.ActiveCfg = Release|Win32
+ {5496E6C5-E041-4FE5-9414-4A0121212452}.Release|Win32.Build.0 = Release|Win32
+ {5496E6C5-E041-4FE5-9414-4A0121212452}.Release|x64.ActiveCfg = Release|x64
+ {5496E6C5-E041-4FE5-9414-4A0121212452}.Release|x64.Build.0 = Release|x64
++ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Debug|ARM64.Build.0 = Debug|ARM64
+ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Debug|Win32.Build.0 = Debug|Win32
+ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Debug|x64.ActiveCfg = Debug|x64
+ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Debug|x64.Build.0 = Debug|x64
++ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Release|ARM64.ActiveCfg = Release|ARM64
++ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Release|ARM64.Build.0 = Release|ARM64
+ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Release|Win32.ActiveCfg = Release|Win32
+ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Release|Win32.Build.0 = Release|Win32
+ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Release|x64.ActiveCfg = Release|x64
+ {5E26BF9C-6CBE-4A13-B5DF-229C738CE813}.Release|x64.Build.0 = Release|x64
++ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Debug|ARM64.Build.0 = Debug|ARM64
+ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Debug|Win32.Build.0 = Debug|Win32
+ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Debug|x64.ActiveCfg = Debug|x64
+ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Debug|x64.Build.0 = Debug|x64
++ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Release|ARM64.ActiveCfg = Release|ARM64
++ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Release|ARM64.Build.0 = Release|ARM64
+ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Release|Win32.ActiveCfg = Release|Win32
+ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Release|Win32.Build.0 = Release|Win32
+ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Release|x64.ActiveCfg = Release|x64
+ {4501C9A9-EF51-43A8-A017-620B86BE4B14}.Release|x64.Build.0 = Release|x64
++ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Debug|Win32.Build.0 = Debug|Win32
+ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Debug|x64.ActiveCfg = Debug|x64
+ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Debug|x64.Build.0 = Debug|x64
++ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Release|ARM64.Build.0 = Release|ARM64
+ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Release|Win32.ActiveCfg = Release|Win32
+ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Release|Win32.Build.0 = Release|Win32
+ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Release|x64.ActiveCfg = Release|x64
+ {56A453CE-2E66-4378-94C1-E5AA27B8941F}.Release|x64.Build.0 = Release|x64
++ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Debug|ARM64.Build.0 = Debug|ARM64
+ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Debug|Win32.Build.0 = Debug|Win32
+ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Debug|x64.ActiveCfg = Debug|x64
+ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Debug|x64.Build.0 = Debug|x64
++ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Release|ARM64.ActiveCfg = Release|ARM64
++ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Release|ARM64.Build.0 = Release|ARM64
+ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Release|Win32.ActiveCfg = Release|Win32
+ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Release|Win32.Build.0 = Release|Win32
+ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Release|x64.ActiveCfg = Release|x64
+ {B35E3F13-8512-4DF1-8B85-22F1A041F1E7}.Release|x64.Build.0 = Release|x64
++ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Debug|ARM64.Build.0 = Debug|ARM64
+ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Debug|Win32.Build.0 = Debug|Win32
+ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Debug|x64.ActiveCfg = Debug|x64
+ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Debug|x64.Build.0 = Debug|x64
++ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Release|ARM64.ActiveCfg = Release|ARM64
++ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Release|ARM64.Build.0 = Release|ARM64
+ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Release|Win32.ActiveCfg = Release|Win32
+ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Release|Win32.Build.0 = Release|Win32
+ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Release|x64.ActiveCfg = Release|x64
+ {E8C21063-72AF-49EA-A1BD-D9B7A42D3FB9}.Release|x64.Build.0 = Release|x64
++ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Debug|ARM64.Build.0 = Debug|ARM64
+ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Debug|Win32.Build.0 = Debug|Win32
+ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Debug|x64.ActiveCfg = Debug|x64
+ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Debug|x64.Build.0 = Debug|x64
++ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Release|ARM64.ActiveCfg = Release|ARM64
++ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Release|ARM64.Build.0 = Release|ARM64
+ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Release|Win32.ActiveCfg = Release|Win32
+ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Release|Win32.Build.0 = Release|Win32
+ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Release|x64.ActiveCfg = Release|x64
+ {3FB4F222-0CBD-4D15-B967-A2582254C31C}.Release|x64.Build.0 = Release|x64
++ {5E12295C-00AA-4078-8F39-BB563E650D86}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {5E12295C-00AA-4078-8F39-BB563E650D86}.Debug|ARM64.Build.0 = Debug|ARM64
+ {5E12295C-00AA-4078-8F39-BB563E650D86}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5E12295C-00AA-4078-8F39-BB563E650D86}.Debug|Win32.Build.0 = Debug|Win32
+ {5E12295C-00AA-4078-8F39-BB563E650D86}.Debug|x64.ActiveCfg = Debug|x64
+ {5E12295C-00AA-4078-8F39-BB563E650D86}.Debug|x64.Build.0 = Debug|x64
++ {5E12295C-00AA-4078-8F39-BB563E650D86}.Release|ARM64.ActiveCfg = Release|ARM64
++ {5E12295C-00AA-4078-8F39-BB563E650D86}.Release|ARM64.Build.0 = Release|ARM64
+ {5E12295C-00AA-4078-8F39-BB563E650D86}.Release|Win32.ActiveCfg = Release|Win32
+ {5E12295C-00AA-4078-8F39-BB563E650D86}.Release|Win32.Build.0 = Release|Win32
+ {5E12295C-00AA-4078-8F39-BB563E650D86}.Release|x64.ActiveCfg = Release|x64
+ {5E12295C-00AA-4078-8F39-BB563E650D86}.Release|x64.Build.0 = Release|x64
++ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Debug|Win32.Build.0 = Debug|Win32
+ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Debug|x64.ActiveCfg = Debug|x64
+ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Debug|x64.Build.0 = Debug|x64
++ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Release|ARM64.Build.0 = Release|ARM64
+ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Release|Win32.ActiveCfg = Release|Win32
+ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Release|Win32.Build.0 = Release|Win32
+ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Release|x64.ActiveCfg = Release|x64
+ {E580BC14-0DC6-4D4E-B0EC-E0124812886F}.Release|x64.Build.0 = Release|x64
++ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Debug|ARM64.Build.0 = Debug|ARM64
+ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Debug|Win32.Build.0 = Debug|Win32
+ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Debug|x64.ActiveCfg = Debug|x64
+ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Debug|x64.Build.0 = Debug|x64
++ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Release|ARM64.ActiveCfg = Release|ARM64
++ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Release|ARM64.Build.0 = Release|ARM64
+ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Release|Win32.ActiveCfg = Release|Win32
+ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Release|Win32.Build.0 = Release|Win32
+ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Release|x64.ActiveCfg = Release|x64
+ {194DD0B4-DE77-4697-B629-D6FF7DDCA65D}.Release|x64.Build.0 = Release|x64
++ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Debug|ARM64.Build.0 = Debug|ARM64
+ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Debug|Win32.Build.0 = Debug|Win32
+ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Debug|x64.ActiveCfg = Debug|x64
+ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Debug|x64.Build.0 = Debug|x64
++ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Release|ARM64.ActiveCfg = Release|ARM64
++ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Release|ARM64.Build.0 = Release|ARM64
+ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Release|Win32.ActiveCfg = Release|Win32
+ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Release|Win32.Build.0 = Release|Win32
+ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Release|x64.ActiveCfg = Release|x64
+ {677A8D67-7853-47E6-AE8B-5F8B40129DF3}.Release|x64.Build.0 = Release|x64
++ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Debug|ARM64.Build.0 = Debug|ARM64
+ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Debug|Win32.Build.0 = Debug|Win32
+ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Debug|x64.ActiveCfg = Debug|x64
+ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Debug|x64.Build.0 = Debug|x64
++ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Release|ARM64.ActiveCfg = Release|ARM64
++ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Release|ARM64.Build.0 = Release|ARM64
+ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Release|Win32.ActiveCfg = Release|Win32
+ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Release|Win32.Build.0 = Release|Win32
+ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Release|x64.ActiveCfg = Release|x64
+ {A203C619-D9AC-4E6A-A96B-A8C2480ABA2B}.Release|x64.Build.0 = Release|x64
++ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Debug|ARM64.Build.0 = Debug|ARM64
+ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Debug|Win32.Build.0 = Debug|Win32
+ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Debug|x64.ActiveCfg = Debug|x64
+ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Debug|x64.Build.0 = Debug|x64
++ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Release|ARM64.ActiveCfg = Release|ARM64
++ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Release|ARM64.Build.0 = Release|ARM64
+ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Release|Win32.ActiveCfg = Release|Win32
+ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Release|Win32.Build.0 = Release|Win32
+ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Release|x64.ActiveCfg = Release|x64
+ {14963081-DA64-4F44-9F58-612E8C71E9F0}.Release|x64.Build.0 = Release|x64
++ {8B188707-F923-4055-B92B-0E8D909460A9}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {8B188707-F923-4055-B92B-0E8D909460A9}.Debug|ARM64.Build.0 = Debug|ARM64
+ {8B188707-F923-4055-B92B-0E8D909460A9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8B188707-F923-4055-B92B-0E8D909460A9}.Debug|Win32.Build.0 = Debug|Win32
+ {8B188707-F923-4055-B92B-0E8D909460A9}.Debug|x64.ActiveCfg = Debug|x64
+ {8B188707-F923-4055-B92B-0E8D909460A9}.Debug|x64.Build.0 = Debug|x64
++ {8B188707-F923-4055-B92B-0E8D909460A9}.Release|ARM64.ActiveCfg = Release|ARM64
++ {8B188707-F923-4055-B92B-0E8D909460A9}.Release|ARM64.Build.0 = Release|ARM64
+ {8B188707-F923-4055-B92B-0E8D909460A9}.Release|Win32.ActiveCfg = Release|Win32
+ {8B188707-F923-4055-B92B-0E8D909460A9}.Release|Win32.Build.0 = Release|Win32
+ {8B188707-F923-4055-B92B-0E8D909460A9}.Release|x64.ActiveCfg = Release|x64
+ {8B188707-F923-4055-B92B-0E8D909460A9}.Release|x64.Build.0 = Release|x64
++ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Debug|ARM64.Build.0 = Debug|ARM64
+ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Debug|Win32.Build.0 = Debug|Win32
+ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Debug|x64.ActiveCfg = Debug|x64
+ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Debug|x64.Build.0 = Debug|x64
++ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Release|ARM64.ActiveCfg = Release|ARM64
++ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Release|ARM64.Build.0 = Release|ARM64
+ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Release|Win32.ActiveCfg = Release|Win32
+ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Release|Win32.Build.0 = Release|Win32
+ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Release|x64.ActiveCfg = Release|x64
+ {937CA6A8-068B-4E11-A6C7-DBE3783600C4}.Release|x64.Build.0 = Release|x64
++ {75CB1254-66B7-40B0-83E1-146C82043392}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {75CB1254-66B7-40B0-83E1-146C82043392}.Debug|ARM64.Build.0 = Debug|ARM64
+ {75CB1254-66B7-40B0-83E1-146C82043392}.Debug|Win32.ActiveCfg = Debug|Win32
+ {75CB1254-66B7-40B0-83E1-146C82043392}.Debug|Win32.Build.0 = Debug|Win32
+ {75CB1254-66B7-40B0-83E1-146C82043392}.Debug|x64.ActiveCfg = Debug|x64
+ {75CB1254-66B7-40B0-83E1-146C82043392}.Debug|x64.Build.0 = Debug|x64
++ {75CB1254-66B7-40B0-83E1-146C82043392}.Release|ARM64.ActiveCfg = Release|ARM64
++ {75CB1254-66B7-40B0-83E1-146C82043392}.Release|ARM64.Build.0 = Release|ARM64
+ {75CB1254-66B7-40B0-83E1-146C82043392}.Release|Win32.ActiveCfg = Release|Win32
+ {75CB1254-66B7-40B0-83E1-146C82043392}.Release|Win32.Build.0 = Release|Win32
+ {75CB1254-66B7-40B0-83E1-146C82043392}.Release|x64.ActiveCfg = Release|x64
+ {75CB1254-66B7-40B0-83E1-146C82043392}.Release|x64.Build.0 = Release|x64
++ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Debug|ARM64.Build.0 = Debug|ARM64
+ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Debug|Win32.Build.0 = Debug|Win32
+ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Debug|x64.ActiveCfg = Debug|x64
+ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Debug|x64.Build.0 = Debug|x64
++ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Release|ARM64.ActiveCfg = Release|ARM64
++ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Release|ARM64.Build.0 = Release|ARM64
+ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Release|Win32.ActiveCfg = Release|Win32
+ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Release|Win32.Build.0 = Release|Win32
+ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Release|x64.ActiveCfg = Release|x64
+ {8E9FE9AB-FDF6-412C-997E-1926F45BDD85}.Release|x64.Build.0 = Release|x64
++ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Debug|ARM64.Build.0 = Debug|ARM64
+ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Debug|Win32.Build.0 = Debug|Win32
+ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Debug|x64.ActiveCfg = Debug|x64
+ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Debug|x64.Build.0 = Debug|x64
++ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Release|ARM64.ActiveCfg = Release|ARM64
++ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Release|ARM64.Build.0 = Release|ARM64
+ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Release|Win32.ActiveCfg = Release|Win32
+ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Release|Win32.Build.0 = Release|Win32
+ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Release|x64.ActiveCfg = Release|x64
+ {502DB345-C8D1-4555-87B2-39E890E9EA4E}.Release|x64.Build.0 = Release|x64
++ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Debug|ARM64.Build.0 = Debug|ARM64
+ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Debug|Win32.Build.0 = Debug|Win32
+ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Debug|x64.ActiveCfg = Debug|x64
+ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Debug|x64.Build.0 = Debug|x64
++ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Release|ARM64.ActiveCfg = Release|ARM64
++ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Release|ARM64.Build.0 = Release|ARM64
+ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Release|Win32.ActiveCfg = Release|Win32
+ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Release|Win32.Build.0 = Release|Win32
+ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Release|x64.ActiveCfg = Release|x64
+ {C47034AB-1F38-43EC-9EE5-FF8D51F5C39B}.Release|x64.Build.0 = Release|x64
++ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Debug|ARM64.Build.0 = Debug|ARM64
+ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Debug|Win32.Build.0 = Debug|Win32
+ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Debug|x64.ActiveCfg = Debug|x64
+ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Debug|x64.Build.0 = Debug|x64
++ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Release|ARM64.ActiveCfg = Release|ARM64
++ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Release|ARM64.Build.0 = Release|ARM64
+ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Release|Win32.ActiveCfg = Release|Win32
+ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Release|Win32.Build.0 = Release|Win32
+ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Release|x64.ActiveCfg = Release|x64
+ {BF983093-3FD9-457F-8DE1-1F50B92536C4}.Release|x64.Build.0 = Release|x64
++ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Debug|ARM64.Build.0 = Debug|ARM64
+ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Debug|Win32.Build.0 = Debug|Win32
+ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Debug|x64.ActiveCfg = Debug|x64
+ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Debug|x64.Build.0 = Debug|x64
++ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Release|ARM64.ActiveCfg = Release|ARM64
++ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Release|ARM64.Build.0 = Release|ARM64
+ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Release|Win32.ActiveCfg = Release|Win32
+ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Release|Win32.Build.0 = Release|Win32
+ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Release|x64.ActiveCfg = Release|x64
+ {8772B3A3-F33A-4174-8006-C72DC40DE189}.Release|x64.Build.0 = Release|x64
++ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Debug|ARM64.Build.0 = Debug|ARM64
+ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Debug|Win32.Build.0 = Debug|Win32
+ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Debug|x64.ActiveCfg = Debug|x64
+ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Debug|x64.Build.0 = Debug|x64
++ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Release|ARM64.ActiveCfg = Release|ARM64
++ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Release|ARM64.Build.0 = Release|ARM64
+ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Release|Win32.ActiveCfg = Release|Win32
+ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Release|Win32.Build.0 = Release|Win32
+ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Release|x64.ActiveCfg = Release|x64
+ {5CE429F3-E82C-42A8-A235-EDA309B34A47}.Release|x64.Build.0 = Release|x64
++ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Debug|ARM64.Build.0 = Debug|ARM64
+ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Debug|Win32.ActiveCfg = Debug|Win32
+ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Debug|Win32.Build.0 = Debug|Win32
+ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Debug|x64.ActiveCfg = Debug|x64
+ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Debug|x64.Build.0 = Debug|x64
++ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Release|ARM64.ActiveCfg = Release|ARM64
++ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Release|ARM64.Build.0 = Release|ARM64
+ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Release|Win32.ActiveCfg = Release|Win32
+ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Release|Win32.Build.0 = Release|Win32
+ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Release|x64.ActiveCfg = Release|x64
+ {3C4EEB75-4F9C-4016-AC37-21EF5BC87C67}.Release|x64.Build.0 = Release|x64
++ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Debug|Win32.Build.0 = Debug|Win32
+ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Debug|x64.ActiveCfg = Debug|x64
+ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Debug|x64.Build.0 = Debug|x64
++ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Release|ARM64.Build.0 = Release|ARM64
+ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Release|Win32.ActiveCfg = Release|Win32
+ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Release|Win32.Build.0 = Release|Win32
+ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Release|x64.ActiveCfg = Release|x64
+ {7C43699D-0EC4-4776-8901-F78D84CC464F}.Release|x64.Build.0 = Release|x64
++ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Debug|ARM64.Build.0 = Debug|ARM64
+ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Debug|Win32.Build.0 = Debug|Win32
+ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Debug|x64.ActiveCfg = Debug|x64
+ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Debug|x64.Build.0 = Debug|x64
++ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Release|ARM64.ActiveCfg = Release|ARM64
++ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Release|ARM64.Build.0 = Release|ARM64
+ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Release|Win32.ActiveCfg = Release|Win32
+ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Release|Win32.Build.0 = Release|Win32
+ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Release|x64.ActiveCfg = Release|x64
+ {1AC592D5-4F5B-4224-B36F-F43914891A54}.Release|x64.Build.0 = Release|x64
++ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Debug|ARM64.Build.0 = Debug|ARM64
+ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Debug|Win32.ActiveCfg = Debug|Win32
+ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Debug|Win32.Build.0 = Debug|Win32
+ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Debug|x64.ActiveCfg = Debug|x64
+ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Debug|x64.Build.0 = Debug|x64
++ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Release|ARM64.ActiveCfg = Release|ARM64
++ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Release|ARM64.Build.0 = Release|ARM64
+ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Release|Win32.ActiveCfg = Release|Win32
+ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Release|Win32.Build.0 = Release|Win32
+ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Release|x64.ActiveCfg = Release|x64
+ {555FE755-B744-4C13-9A7D-0F9D8FDEC132}.Release|x64.Build.0 = Release|x64
++ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Debug|ARM64.Build.0 = Debug|ARM64
+ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Debug|Win32.Build.0 = Debug|Win32
+ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Debug|x64.ActiveCfg = Debug|x64
+ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Debug|x64.Build.0 = Debug|x64
++ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Release|ARM64.ActiveCfg = Release|ARM64
++ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Release|ARM64.Build.0 = Release|ARM64
+ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Release|Win32.ActiveCfg = Release|Win32
+ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Release|Win32.Build.0 = Release|Win32
+ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Release|x64.ActiveCfg = Release|x64
+ {6707C818-9BC2-4E4D-85DB-374C8CAA491E}.Release|x64.Build.0 = Release|x64
++ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Debug|ARM64.Build.0 = Debug|ARM64
+ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Debug|Win32.Build.0 = Debug|Win32
+ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Debug|x64.ActiveCfg = Debug|x64
+ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Debug|x64.Build.0 = Debug|x64
++ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Release|ARM64.ActiveCfg = Release|ARM64
++ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Release|ARM64.Build.0 = Release|ARM64
+ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Release|Win32.ActiveCfg = Release|Win32
+ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Release|Win32.Build.0 = Release|Win32
+ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Release|x64.ActiveCfg = Release|x64
+ {B5534C9D-9886-44DE-920B-29F0F1C9DD28}.Release|x64.Build.0 = Release|x64
++ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Debug|ARM64.Build.0 = Debug|ARM64
+ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Debug|Win32.Build.0 = Debug|Win32
+ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Debug|x64.ActiveCfg = Debug|x64
+ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Debug|x64.Build.0 = Debug|x64
++ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Release|ARM64.ActiveCfg = Release|ARM64
++ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Release|ARM64.Build.0 = Release|ARM64
+ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Release|Win32.ActiveCfg = Release|Win32
+ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Release|Win32.Build.0 = Release|Win32
+ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Release|x64.ActiveCfg = Release|x64
+ {800B208B-50A2-48B7-BA68-DC1CC6F42D8C}.Release|x64.Build.0 = Release|x64
++ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Debug|ARM64.Build.0 = Debug|ARM64
+ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Debug|Win32.Build.0 = Debug|Win32
+ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Debug|x64.ActiveCfg = Debug|x64
+ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Debug|x64.Build.0 = Debug|x64
++ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Release|ARM64.ActiveCfg = Release|ARM64
++ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Release|ARM64.Build.0 = Release|ARM64
+ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Release|Win32.ActiveCfg = Release|Win32
+ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Release|Win32.Build.0 = Release|Win32
+ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Release|x64.ActiveCfg = Release|x64
+ {5D159FE5-DE77-4EDF-974E-D4FF448BD717}.Release|x64.Build.0 = Release|x64
++ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Debug|ARM64.Build.0 = Debug|ARM64
+ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Debug|Win32.Build.0 = Debug|Win32
+ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Debug|x64.ActiveCfg = Debug|x64
+ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Debug|x64.Build.0 = Debug|x64
++ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Release|ARM64.ActiveCfg = Release|ARM64
++ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Release|ARM64.Build.0 = Release|ARM64
+ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Release|Win32.ActiveCfg = Release|Win32
+ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Release|Win32.Build.0 = Release|Win32
+ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Release|x64.ActiveCfg = Release|x64
+ {211B1F3D-33CA-4DB0-883A-203CF6402EFA}.Release|x64.Build.0 = Release|x64
++ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Debug|ARM64.Build.0 = Debug|ARM64
+ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Debug|Win32.Build.0 = Debug|Win32
+ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Debug|x64.ActiveCfg = Debug|x64
+ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Debug|x64.Build.0 = Debug|x64
++ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Release|ARM64.ActiveCfg = Release|ARM64
++ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Release|ARM64.Build.0 = Release|ARM64
+ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Release|Win32.ActiveCfg = Release|Win32
+ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Release|Win32.Build.0 = Release|Win32
+ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Release|x64.ActiveCfg = Release|x64
+ {A84C7B38-C92A-4A05-9588-4D1FB71B1BE0}.Release|x64.Build.0 = Release|x64
++ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Debug|ARM64.Build.0 = Debug|ARM64
+ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Debug|Win32.Build.0 = Debug|Win32
+ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Debug|x64.ActiveCfg = Debug|x64
+ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Debug|x64.Build.0 = Debug|x64
++ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Release|ARM64.ActiveCfg = Release|ARM64
++ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Release|ARM64.Build.0 = Release|ARM64
+ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Release|Win32.ActiveCfg = Release|Win32
+ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Release|Win32.Build.0 = Release|Win32
+ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Release|x64.ActiveCfg = Release|x64
+ {F5819E2D-1A7F-460E-B220-328A83A8FD2C}.Release|x64.Build.0 = Release|x64
++ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Debug|ARM64.Build.0 = Debug|ARM64
+ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Debug|Win32.Build.0 = Debug|Win32
+ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Debug|x64.ActiveCfg = Debug|x64
+ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Debug|x64.Build.0 = Debug|x64
++ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Release|ARM64.ActiveCfg = Release|ARM64
++ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Release|ARM64.Build.0 = Release|ARM64
+ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Release|Win32.ActiveCfg = Release|Win32
+ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Release|Win32.Build.0 = Release|Win32
+ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Release|x64.ActiveCfg = Release|x64
+ {35798C92-CC45-4AC5-A33E-8D82F7CF847E}.Release|x64.Build.0 = Release|x64
++ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Debug|ARM64.Build.0 = Debug|ARM64
+ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Debug|Win32.ActiveCfg = Debug|Win32
+ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Debug|Win32.Build.0 = Debug|Win32
+ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Debug|x64.ActiveCfg = Debug|x64
+ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Debug|x64.Build.0 = Debug|x64
++ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Release|ARM64.ActiveCfg = Release|ARM64
++ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Release|ARM64.Build.0 = Release|ARM64
+ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Release|Win32.ActiveCfg = Release|Win32
+ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Release|Win32.Build.0 = Release|Win32
+ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Release|x64.ActiveCfg = Release|x64
+ {28734BFB-4C00-455D-96A7-2CA6C0D598E1}.Release|x64.Build.0 = Release|x64
++ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Debug|ARM64.Build.0 = Debug|ARM64
+ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Debug|Win32.Build.0 = Debug|Win32
+ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Debug|x64.ActiveCfg = Debug|x64
+ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Debug|x64.Build.0 = Debug|x64
++ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Release|ARM64.ActiveCfg = Release|ARM64
++ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Release|ARM64.Build.0 = Release|ARM64
+ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Release|Win32.ActiveCfg = Release|Win32
+ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Release|Win32.Build.0 = Release|Win32
+ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Release|x64.ActiveCfg = Release|x64
+ {1738FE1E-34B4-4657-AE5A-94CA8A31A6E9}.Release|x64.Build.0 = Release|x64
++ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Debug|ARM64.Build.0 = Debug|ARM64
+ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Debug|Win32.Build.0 = Debug|Win32
+ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Debug|x64.ActiveCfg = Debug|x64
+ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Debug|x64.Build.0 = Debug|x64
++ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Release|ARM64.ActiveCfg = Release|ARM64
++ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Release|ARM64.Build.0 = Release|ARM64
+ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Release|Win32.ActiveCfg = Release|Win32
+ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Release|Win32.Build.0 = Release|Win32
+ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Release|x64.ActiveCfg = Release|x64
+ {A6116D1B-1A43-4F56-AF6B-DF79D7A28317}.Release|x64.Build.0 = Release|x64
++ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Debug|ARM64.Build.0 = Debug|ARM64
+ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Debug|Win32.ActiveCfg = Debug|Win32
+ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Debug|Win32.Build.0 = Debug|Win32
+ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Debug|x64.ActiveCfg = Debug|x64
+ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Debug|x64.Build.0 = Debug|x64
++ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Release|ARM64.ActiveCfg = Release|ARM64
++ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Release|ARM64.Build.0 = Release|ARM64
+ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Release|Win32.ActiveCfg = Release|Win32
+ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Release|Win32.Build.0 = Release|Win32
+ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Release|x64.ActiveCfg = Release|x64
+ {40607BCA-7DC6-400F-BC4C-96A9AB208475}.Release|x64.Build.0 = Release|x64
++ {B59EE041-28C6-4919-80F9-52249A799B7B}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {B59EE041-28C6-4919-80F9-52249A799B7B}.Debug|ARM64.Build.0 = Debug|ARM64
+ {B59EE041-28C6-4919-80F9-52249A799B7B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B59EE041-28C6-4919-80F9-52249A799B7B}.Debug|Win32.Build.0 = Debug|Win32
+ {B59EE041-28C6-4919-80F9-52249A799B7B}.Debug|x64.ActiveCfg = Debug|x64
+ {B59EE041-28C6-4919-80F9-52249A799B7B}.Debug|x64.Build.0 = Debug|x64
++ {B59EE041-28C6-4919-80F9-52249A799B7B}.Release|ARM64.ActiveCfg = Release|ARM64
++ {B59EE041-28C6-4919-80F9-52249A799B7B}.Release|ARM64.Build.0 = Release|ARM64
+ {B59EE041-28C6-4919-80F9-52249A799B7B}.Release|Win32.ActiveCfg = Release|Win32
+ {B59EE041-28C6-4919-80F9-52249A799B7B}.Release|Win32.Build.0 = Release|Win32
+ {B59EE041-28C6-4919-80F9-52249A799B7B}.Release|x64.ActiveCfg = Release|x64
+ {B59EE041-28C6-4919-80F9-52249A799B7B}.Release|x64.Build.0 = Release|x64
++ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Debug|ARM64.Build.0 = Debug|ARM64
+ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Debug|Win32.Build.0 = Debug|Win32
+ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Debug|x64.ActiveCfg = Debug|x64
+ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Debug|x64.Build.0 = Debug|x64
++ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Release|ARM64.ActiveCfg = Release|ARM64
++ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Release|ARM64.Build.0 = Release|ARM64
+ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Release|Win32.ActiveCfg = Release|Win32
+ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Release|Win32.Build.0 = Release|Win32
+ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Release|x64.ActiveCfg = Release|x64
+ {0CAA738A-C56B-4F54-A8A3-B27C7220FC75}.Release|x64.Build.0 = Release|x64
++ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Debug|ARM64.Build.0 = Debug|ARM64
+ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Debug|Win32.ActiveCfg = Debug|Win32
+ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Debug|Win32.Build.0 = Debug|Win32
+ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Debug|x64.ActiveCfg = Debug|x64
+ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Debug|x64.Build.0 = Debug|x64
++ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Release|ARM64.ActiveCfg = Release|ARM64
++ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Release|ARM64.Build.0 = Release|ARM64
+ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Release|Win32.ActiveCfg = Release|Win32
+ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Release|Win32.Build.0 = Release|Win32
+ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Release|x64.ActiveCfg = Release|x64
+ {950ACA47-2721-4D2E-8F19-C48759F1E492}.Release|x64.Build.0 = Release|x64
++ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Debug|ARM64.Build.0 = Debug|ARM64
+ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Debug|Win32.Build.0 = Debug|Win32
+ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Debug|x64.ActiveCfg = Debug|x64
+ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Debug|x64.Build.0 = Debug|x64
++ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Release|ARM64.ActiveCfg = Release|ARM64
++ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Release|ARM64.Build.0 = Release|ARM64
+ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Release|Win32.ActiveCfg = Release|Win32
+ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Release|Win32.Build.0 = Release|Win32
+ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Release|x64.ActiveCfg = Release|x64
+ {4C225734-B4C0-4D1D-94F6-2CC48144F12D}.Release|x64.Build.0 = Release|x64
++ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Debug|ARM64.Build.0 = Debug|ARM64
+ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Debug|Win32.ActiveCfg = Debug|Win32
+ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Debug|Win32.Build.0 = Debug|Win32
+ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Debug|x64.ActiveCfg = Debug|x64
+ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Debug|x64.Build.0 = Debug|x64
++ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Release|ARM64.ActiveCfg = Release|ARM64
++ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Release|ARM64.Build.0 = Release|ARM64
+ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Release|Win32.ActiveCfg = Release|Win32
+ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Release|Win32.Build.0 = Release|Win32
+ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Release|x64.ActiveCfg = Release|x64
+ {487DF829-9D13-4C6F-AA24-2C8A4115B657}.Release|x64.Build.0 = Release|x64
++ {DD8664D4-902B-493B-BAFA-E559100A2755}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {DD8664D4-902B-493B-BAFA-E559100A2755}.Debug|ARM64.Build.0 = Debug|ARM64
+ {DD8664D4-902B-493B-BAFA-E559100A2755}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DD8664D4-902B-493B-BAFA-E559100A2755}.Debug|Win32.Build.0 = Debug|Win32
+ {DD8664D4-902B-493B-BAFA-E559100A2755}.Debug|x64.ActiveCfg = Debug|x64
+ {DD8664D4-902B-493B-BAFA-E559100A2755}.Debug|x64.Build.0 = Debug|x64
++ {DD8664D4-902B-493B-BAFA-E559100A2755}.Release|ARM64.ActiveCfg = Release|ARM64
++ {DD8664D4-902B-493B-BAFA-E559100A2755}.Release|ARM64.Build.0 = Release|ARM64
+ {DD8664D4-902B-493B-BAFA-E559100A2755}.Release|Win32.ActiveCfg = Release|Win32
+ {DD8664D4-902B-493B-BAFA-E559100A2755}.Release|Win32.Build.0 = Release|Win32
+ {DD8664D4-902B-493B-BAFA-E559100A2755}.Release|x64.ActiveCfg = Release|x64
+ {DD8664D4-902B-493B-BAFA-E559100A2755}.Release|x64.Build.0 = Release|x64
++ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Debug|ARM64.Build.0 = Debug|ARM64
+ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Debug|Win32.Build.0 = Debug|Win32
+ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Debug|x64.ActiveCfg = Debug|x64
+ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Debug|x64.Build.0 = Debug|x64
++ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Release|ARM64.ActiveCfg = Release|ARM64
++ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Release|ARM64.Build.0 = Release|ARM64
+ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Release|Win32.ActiveCfg = Release|Win32
+ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Release|Win32.Build.0 = Release|Win32
+ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Release|x64.ActiveCfg = Release|x64
+ {475193E3-1120-4D13-A9C1-C6B99558E44A}.Release|x64.Build.0 = Release|x64
++ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Debug|ARM64.Build.0 = Debug|ARM64
+ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Debug|Win32.ActiveCfg = Debug|Win32
+ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Debug|Win32.Build.0 = Debug|Win32
+ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Debug|x64.ActiveCfg = Debug|x64
+ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Debug|x64.Build.0 = Debug|x64
++ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Release|ARM64.ActiveCfg = Release|ARM64
++ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Release|ARM64.Build.0 = Release|ARM64
+ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Release|Win32.ActiveCfg = Release|Win32
+ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Release|Win32.Build.0 = Release|Win32
+ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Release|x64.ActiveCfg = Release|x64
+ {59759753-CAC1-4D61-9B98-E1DEDD2C3E69}.Release|x64.Build.0 = Release|x64
++ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Debug|ARM64.Build.0 = Debug|ARM64
+ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Debug|Win32.Build.0 = Debug|Win32
+ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Debug|x64.ActiveCfg = Debug|x64
+ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Debug|x64.Build.0 = Debug|x64
++ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Release|ARM64.ActiveCfg = Release|ARM64
++ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Release|ARM64.Build.0 = Release|ARM64
+ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Release|Win32.ActiveCfg = Release|Win32
+ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Release|Win32.Build.0 = Release|Win32
+ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Release|x64.ActiveCfg = Release|x64
+ {4746E6DB-D6FB-4DDC-8B49-7F184231C15A}.Release|x64.Build.0 = Release|x64
++ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Debug|ARM64.Build.0 = Debug|ARM64
+ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Debug|Win32.Build.0 = Debug|Win32
+ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Debug|x64.ActiveCfg = Debug|x64
+ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Debug|x64.Build.0 = Debug|x64
++ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Release|ARM64.ActiveCfg = Release|ARM64
++ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Release|ARM64.Build.0 = Release|ARM64
+ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Release|Win32.ActiveCfg = Release|Win32
+ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Release|Win32.Build.0 = Release|Win32
+ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Release|x64.ActiveCfg = Release|x64
+ {1F0FA3CB-10DD-4EEF-911D-D3D904B4EF4A}.Release|x64.Build.0 = Release|x64
++ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Debug|ARM64.Build.0 = Debug|ARM64
+ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Debug|Win32.Build.0 = Debug|Win32
+ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Debug|x64.ActiveCfg = Debug|x64
+ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Debug|x64.Build.0 = Debug|x64
++ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Release|ARM64.ActiveCfg = Release|ARM64
++ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Release|ARM64.Build.0 = Release|ARM64
+ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Release|Win32.ActiveCfg = Release|Win32
+ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Release|Win32.Build.0 = Release|Win32
+ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Release|x64.ActiveCfg = Release|x64
+ {DE3219F6-E665-4A8E-A990-8BB9A929CCB7}.Release|x64.Build.0 = Release|x64
++ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Debug|ARM64.Build.0 = Debug|ARM64
+ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Debug|Win32.Build.0 = Debug|Win32
+ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Debug|x64.ActiveCfg = Debug|x64
+ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Debug|x64.Build.0 = Debug|x64
++ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Release|ARM64.ActiveCfg = Release|ARM64
++ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Release|ARM64.Build.0 = Release|ARM64
+ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Release|Win32.ActiveCfg = Release|Win32
+ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Release|Win32.Build.0 = Release|Win32
+ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Release|x64.ActiveCfg = Release|x64
+ {E625B0EF-8AC1-489C-9E6B-EE249A507FC7}.Release|x64.Build.0 = Release|x64
++ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Debug|ARM64.Build.0 = Debug|ARM64
+ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Debug|Win32.Build.0 = Debug|Win32
+ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Debug|x64.ActiveCfg = Debug|x64
+ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Debug|x64.Build.0 = Debug|x64
++ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Release|ARM64.ActiveCfg = Release|ARM64
++ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Release|ARM64.Build.0 = Release|ARM64
+ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Release|Win32.ActiveCfg = Release|Win32
+ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Release|Win32.Build.0 = Release|Win32
+ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Release|x64.ActiveCfg = Release|x64
+ {0188609D-EB9A-4B25-88C6-EB952B4E39E7}.Release|x64.Build.0 = Release|x64
++ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Debug|ARM64.Build.0 = Debug|ARM64
+ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Debug|Win32.Build.0 = Debug|Win32
+ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Debug|x64.ActiveCfg = Debug|x64
+ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Debug|x64.Build.0 = Debug|x64
++ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Release|ARM64.ActiveCfg = Release|ARM64
++ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Release|ARM64.Build.0 = Release|ARM64
+ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Release|Win32.ActiveCfg = Release|Win32
+ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Release|Win32.Build.0 = Release|Win32
+ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Release|x64.ActiveCfg = Release|x64
+ {90B4302C-0A10-4987-A4DF-3F578D49CED2}.Release|x64.Build.0 = Release|x64
++ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Debug|ARM64.Build.0 = Debug|ARM64
+ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Debug|Win32.ActiveCfg = Debug|Win32
+ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Debug|Win32.Build.0 = Debug|Win32
+ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Debug|x64.ActiveCfg = Debug|x64
+ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Debug|x64.Build.0 = Debug|x64
++ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Release|ARM64.ActiveCfg = Release|ARM64
++ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Release|ARM64.Build.0 = Release|ARM64
+ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Release|Win32.ActiveCfg = Release|Win32
+ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Release|Win32.Build.0 = Release|Win32
+ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Release|x64.ActiveCfg = Release|x64
+ {13D31BD0-B598-4468-9AA2-5C5363DDB648}.Release|x64.Build.0 = Release|x64
++ {85668C77-928A-49FB-9844-0E975140E32F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {85668C77-928A-49FB-9844-0E975140E32F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {85668C77-928A-49FB-9844-0E975140E32F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {85668C77-928A-49FB-9844-0E975140E32F}.Debug|Win32.Build.0 = Debug|Win32
+ {85668C77-928A-49FB-9844-0E975140E32F}.Debug|x64.ActiveCfg = Debug|x64
+ {85668C77-928A-49FB-9844-0E975140E32F}.Debug|x64.Build.0 = Debug|x64
++ {85668C77-928A-49FB-9844-0E975140E32F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {85668C77-928A-49FB-9844-0E975140E32F}.Release|ARM64.Build.0 = Release|ARM64
+ {85668C77-928A-49FB-9844-0E975140E32F}.Release|Win32.ActiveCfg = Release|Win32
+ {85668C77-928A-49FB-9844-0E975140E32F}.Release|Win32.Build.0 = Release|Win32
+ {85668C77-928A-49FB-9844-0E975140E32F}.Release|x64.ActiveCfg = Release|x64
+ {85668C77-928A-49FB-9844-0E975140E32F}.Release|x64.Build.0 = Release|x64
++ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Debug|ARM64.Build.0 = Debug|ARM64
+ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Debug|Win32.Build.0 = Debug|Win32
+ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Debug|x64.ActiveCfg = Debug|x64
+ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Debug|x64.Build.0 = Debug|x64
++ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Release|ARM64.ActiveCfg = Release|ARM64
++ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Release|ARM64.Build.0 = Release|ARM64
+ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Release|Win32.ActiveCfg = Release|Win32
+ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Release|Win32.Build.0 = Release|Win32
+ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Release|x64.ActiveCfg = Release|x64
+ {5D6BF8AC-E329-473C-8E66-020458740EC2}.Release|x64.Build.0 = Release|x64
++ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Debug|ARM64.Build.0 = Debug|ARM64
+ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Debug|Win32.Build.0 = Debug|Win32
+ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Debug|x64.ActiveCfg = Debug|x64
+ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Debug|x64.Build.0 = Debug|x64
++ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Release|ARM64.ActiveCfg = Release|ARM64
++ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Release|ARM64.Build.0 = Release|ARM64
+ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Release|Win32.ActiveCfg = Release|Win32
+ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Release|Win32.Build.0 = Release|Win32
+ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Release|x64.ActiveCfg = Release|x64
+ {30690FC7-2E6D-493E-88D6-BF963BE8A8A2}.Release|x64.Build.0 = Release|x64
++ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Debug|ARM64.Build.0 = Debug|ARM64
+ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Debug|Win32.Build.0 = Debug|Win32
+ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Debug|x64.ActiveCfg = Debug|x64
+ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Debug|x64.Build.0 = Debug|x64
++ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Release|ARM64.ActiveCfg = Release|ARM64
++ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Release|ARM64.Build.0 = Release|ARM64
+ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Release|Win32.ActiveCfg = Release|Win32
+ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Release|Win32.Build.0 = Release|Win32
+ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Release|x64.ActiveCfg = Release|x64
+ {BC4DC963-603B-4969-8141-ECAEFECD8D87}.Release|x64.Build.0 = Release|x64
++ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Debug|ARM64.Build.0 = Debug|ARM64
+ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Debug|Win32.Build.0 = Debug|Win32
+ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Debug|x64.ActiveCfg = Debug|x64
+ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Debug|x64.Build.0 = Debug|x64
++ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Release|ARM64.ActiveCfg = Release|ARM64
++ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Release|ARM64.Build.0 = Release|ARM64
+ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Release|Win32.ActiveCfg = Release|Win32
+ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Release|Win32.Build.0 = Release|Win32
+ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Release|x64.ActiveCfg = Release|x64
+ {8502DF4F-A2FB-4033-AAA2-F4C707EB4AB3}.Release|x64.Build.0 = Release|x64
++ {B2446452-DF81-48E3-8244-88A76549EE47}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {B2446452-DF81-48E3-8244-88A76549EE47}.Debug|ARM64.Build.0 = Debug|ARM64
+ {B2446452-DF81-48E3-8244-88A76549EE47}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B2446452-DF81-48E3-8244-88A76549EE47}.Debug|Win32.Build.0 = Debug|Win32
+ {B2446452-DF81-48E3-8244-88A76549EE47}.Debug|x64.ActiveCfg = Debug|x64
+ {B2446452-DF81-48E3-8244-88A76549EE47}.Debug|x64.Build.0 = Debug|x64
++ {B2446452-DF81-48E3-8244-88A76549EE47}.Release|ARM64.ActiveCfg = Release|ARM64
++ {B2446452-DF81-48E3-8244-88A76549EE47}.Release|ARM64.Build.0 = Release|ARM64
+ {B2446452-DF81-48E3-8244-88A76549EE47}.Release|Win32.ActiveCfg = Release|Win32
+ {B2446452-DF81-48E3-8244-88A76549EE47}.Release|Win32.Build.0 = Release|Win32
+ {B2446452-DF81-48E3-8244-88A76549EE47}.Release|x64.ActiveCfg = Release|x64
+ {B2446452-DF81-48E3-8244-88A76549EE47}.Release|x64.Build.0 = Release|x64
++ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Debug|ARM64.Build.0 = Debug|ARM64
+ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Debug|Win32.Build.0 = Debug|Win32
+ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Debug|x64.ActiveCfg = Debug|x64
+ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Debug|x64.Build.0 = Debug|x64
++ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Release|ARM64.ActiveCfg = Release|ARM64
++ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Release|ARM64.Build.0 = Release|ARM64
+ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Release|Win32.ActiveCfg = Release|Win32
+ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Release|Win32.Build.0 = Release|Win32
+ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Release|x64.ActiveCfg = Release|x64
+ {1E7722BB-1F2F-475A-8F12-36A6A4DB68C3}.Release|x64.Build.0 = Release|x64
++ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Debug|ARM64.Build.0 = Debug|ARM64
+ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Debug|Win32.Build.0 = Debug|Win32
+ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Debug|x64.ActiveCfg = Debug|x64
+ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Debug|x64.Build.0 = Debug|x64
++ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Release|ARM64.ActiveCfg = Release|ARM64
++ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Release|ARM64.Build.0 = Release|ARM64
+ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Release|Win32.ActiveCfg = Release|Win32
+ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Release|Win32.Build.0 = Release|Win32
+ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Release|x64.ActiveCfg = Release|x64
+ {0E5EF163-AC52-4CD9-B680-F90DAE280DCE}.Release|x64.Build.0 = Release|x64
++ {15B97F60-510B-41E2-9B4F-80ED90497763}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {15B97F60-510B-41E2-9B4F-80ED90497763}.Debug|ARM64.Build.0 = Debug|ARM64
+ {15B97F60-510B-41E2-9B4F-80ED90497763}.Debug|Win32.ActiveCfg = Debug|Win32
+ {15B97F60-510B-41E2-9B4F-80ED90497763}.Debug|Win32.Build.0 = Debug|Win32
+ {15B97F60-510B-41E2-9B4F-80ED90497763}.Debug|x64.ActiveCfg = Debug|x64
+ {15B97F60-510B-41E2-9B4F-80ED90497763}.Debug|x64.Build.0 = Debug|x64
++ {15B97F60-510B-41E2-9B4F-80ED90497763}.Release|ARM64.ActiveCfg = Release|ARM64
++ {15B97F60-510B-41E2-9B4F-80ED90497763}.Release|ARM64.Build.0 = Release|ARM64
+ {15B97F60-510B-41E2-9B4F-80ED90497763}.Release|Win32.ActiveCfg = Release|Win32
+ {15B97F60-510B-41E2-9B4F-80ED90497763}.Release|Win32.Build.0 = Release|Win32
+ {15B97F60-510B-41E2-9B4F-80ED90497763}.Release|x64.ActiveCfg = Release|x64
+ {15B97F60-510B-41E2-9B4F-80ED90497763}.Release|x64.Build.0 = Release|x64
++ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Debug|ARM64.Build.0 = Debug|ARM64
+ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Debug|Win32.Build.0 = Debug|Win32
+ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Debug|x64.ActiveCfg = Debug|x64
+ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Debug|x64.Build.0 = Debug|x64
++ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Release|ARM64.ActiveCfg = Release|ARM64
++ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Release|ARM64.Build.0 = Release|ARM64
+ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Release|Win32.ActiveCfg = Release|Win32
+ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Release|Win32.Build.0 = Release|Win32
+ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Release|x64.ActiveCfg = Release|x64
+ {B095FDE3-CFD2-4612-8D99-202C275A2B76}.Release|x64.Build.0 = Release|x64
++ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Debug|ARM64.Build.0 = Debug|ARM64
+ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Debug|Win32.Build.0 = Debug|Win32
+ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Debug|x64.ActiveCfg = Debug|x64
+ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Debug|x64.Build.0 = Debug|x64
++ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Release|ARM64.ActiveCfg = Release|ARM64
++ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Release|ARM64.Build.0 = Release|ARM64
+ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Release|Win32.ActiveCfg = Release|Win32
+ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Release|Win32.Build.0 = Release|Win32
+ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Release|x64.ActiveCfg = Release|x64
+ {8FA19AAE-38EF-42F9-BDD0-B77F08833068}.Release|x64.Build.0 = Release|x64
++ {896E9492-0D80-4372-B385-1E5ACB805604}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {896E9492-0D80-4372-B385-1E5ACB805604}.Debug|ARM64.Build.0 = Debug|ARM64
+ {896E9492-0D80-4372-B385-1E5ACB805604}.Debug|Win32.ActiveCfg = Debug|Win32
+ {896E9492-0D80-4372-B385-1E5ACB805604}.Debug|Win32.Build.0 = Debug|Win32
+ {896E9492-0D80-4372-B385-1E5ACB805604}.Debug|x64.ActiveCfg = Debug|x64
+ {896E9492-0D80-4372-B385-1E5ACB805604}.Debug|x64.Build.0 = Debug|x64
++ {896E9492-0D80-4372-B385-1E5ACB805604}.Release|ARM64.ActiveCfg = Release|ARM64
++ {896E9492-0D80-4372-B385-1E5ACB805604}.Release|ARM64.Build.0 = Release|ARM64
+ {896E9492-0D80-4372-B385-1E5ACB805604}.Release|Win32.ActiveCfg = Release|Win32
+ {896E9492-0D80-4372-B385-1E5ACB805604}.Release|Win32.Build.0 = Release|Win32
+ {896E9492-0D80-4372-B385-1E5ACB805604}.Release|x64.ActiveCfg = Release|x64
+ {896E9492-0D80-4372-B385-1E5ACB805604}.Release|x64.Build.0 = Release|x64
++ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Debug|ARM64.Build.0 = Debug|ARM64
+ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Debug|Win32.Build.0 = Debug|Win32
+ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Debug|x64.ActiveCfg = Debug|x64
+ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Debug|x64.Build.0 = Debug|x64
++ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Release|ARM64.ActiveCfg = Release|ARM64
++ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Release|ARM64.Build.0 = Release|ARM64
+ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Release|Win32.ActiveCfg = Release|Win32
+ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Release|Win32.Build.0 = Release|Win32
+ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Release|x64.ActiveCfg = Release|x64
+ {0414F249-0D60-46C7-B70E-16FD9D25C8D7}.Release|x64.Build.0 = Release|x64
++ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Debug|ARM64.Build.0 = Debug|ARM64
+ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Debug|Win32.Build.0 = Debug|Win32
+ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Debug|x64.ActiveCfg = Debug|x64
+ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Debug|x64.Build.0 = Debug|x64
++ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Release|ARM64.ActiveCfg = Release|ARM64
++ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Release|ARM64.Build.0 = Release|ARM64
+ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Release|Win32.ActiveCfg = Release|Win32
+ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Release|Win32.Build.0 = Release|Win32
+ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Release|x64.ActiveCfg = Release|x64
+ {2DE033B4-1CD2-44C0-A824-09AFCE213C42}.Release|x64.Build.0 = Release|x64
++ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Debug|ARM64.Build.0 = Debug|ARM64
+ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Debug|Win32.Build.0 = Debug|Win32
+ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Debug|x64.ActiveCfg = Debug|x64
+ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Debug|x64.Build.0 = Debug|x64
++ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Release|ARM64.ActiveCfg = Release|ARM64
++ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Release|ARM64.Build.0 = Release|ARM64
+ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Release|Win32.ActiveCfg = Release|Win32
+ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Release|Win32.Build.0 = Release|Win32
+ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Release|x64.ActiveCfg = Release|x64
+ {D52FB1F4-FFF9-4546-B691-3EBEEB982E5D}.Release|x64.Build.0 = Release|x64
++ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Debug|ARM64.Build.0 = Debug|ARM64
+ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Debug|Win32.ActiveCfg = Debug|Win32
+ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Debug|Win32.Build.0 = Debug|Win32
+ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Debug|x64.ActiveCfg = Debug|x64
+ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Debug|x64.Build.0 = Debug|x64
++ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Release|ARM64.ActiveCfg = Release|ARM64
++ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Release|ARM64.Build.0 = Release|ARM64
+ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Release|Win32.ActiveCfg = Release|Win32
+ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Release|Win32.Build.0 = Release|Win32
+ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Release|x64.ActiveCfg = Release|x64
+ {95B42F70-8AB5-4CC6-8C7D-A466F78CE119}.Release|x64.Build.0 = Release|x64
++ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Debug|ARM64.Build.0 = Debug|ARM64
+ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Debug|Win32.Build.0 = Debug|Win32
+ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Debug|x64.ActiveCfg = Debug|x64
+ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Debug|x64.Build.0 = Debug|x64
++ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Release|ARM64.ActiveCfg = Release|ARM64
++ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Release|ARM64.Build.0 = Release|ARM64
+ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Release|Win32.ActiveCfg = Release|Win32
+ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Release|Win32.Build.0 = Release|Win32
+ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Release|x64.ActiveCfg = Release|x64
+ {F6B45CEC-339B-4153-A8A3-696EEF12C058}.Release|x64.Build.0 = Release|x64
++ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Debug|ARM64.Build.0 = Debug|ARM64
+ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Debug|Win32.Build.0 = Debug|Win32
+ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Debug|x64.ActiveCfg = Debug|x64
+ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Debug|x64.Build.0 = Debug|x64
++ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Release|ARM64.ActiveCfg = Release|ARM64
++ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Release|ARM64.Build.0 = Release|ARM64
+ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Release|Win32.ActiveCfg = Release|Win32
+ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Release|Win32.Build.0 = Release|Win32
+ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Release|x64.ActiveCfg = Release|x64
+ {B49D5853-266E-4C8C-A05E-DEA26051D0F4}.Release|x64.Build.0 = Release|x64
++ {86A79561-EC9B-451D-A535-4066F0F0E722}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {86A79561-EC9B-451D-A535-4066F0F0E722}.Debug|ARM64.Build.0 = Debug|ARM64
+ {86A79561-EC9B-451D-A535-4066F0F0E722}.Debug|Win32.ActiveCfg = Debug|Win32
+ {86A79561-EC9B-451D-A535-4066F0F0E722}.Debug|Win32.Build.0 = Debug|Win32
+ {86A79561-EC9B-451D-A535-4066F0F0E722}.Debug|x64.ActiveCfg = Debug|x64
+ {86A79561-EC9B-451D-A535-4066F0F0E722}.Debug|x64.Build.0 = Debug|x64
++ {86A79561-EC9B-451D-A535-4066F0F0E722}.Release|ARM64.ActiveCfg = Release|ARM64
++ {86A79561-EC9B-451D-A535-4066F0F0E722}.Release|ARM64.Build.0 = Release|ARM64
+ {86A79561-EC9B-451D-A535-4066F0F0E722}.Release|Win32.ActiveCfg = Release|Win32
+ {86A79561-EC9B-451D-A535-4066F0F0E722}.Release|Win32.Build.0 = Release|Win32
+ {86A79561-EC9B-451D-A535-4066F0F0E722}.Release|x64.ActiveCfg = Release|x64
+ {86A79561-EC9B-451D-A535-4066F0F0E722}.Release|x64.Build.0 = Release|x64
++ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Debug|ARM64.Build.0 = Debug|ARM64
+ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Debug|Win32.Build.0 = Debug|Win32
+ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Debug|x64.ActiveCfg = Debug|x64
+ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Debug|x64.Build.0 = Debug|x64
++ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Release|ARM64.ActiveCfg = Release|ARM64
++ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Release|ARM64.Build.0 = Release|ARM64
+ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Release|Win32.ActiveCfg = Release|Win32
+ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Release|Win32.Build.0 = Release|Win32
+ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Release|x64.ActiveCfg = Release|x64
+ {F5A61A1F-C1C6-490B-90F6-28002FA0650E}.Release|x64.Build.0 = Release|x64
++ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Debug|ARM64.Build.0 = Debug|ARM64
+ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Debug|Win32.Build.0 = Debug|Win32
+ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Debug|x64.ActiveCfg = Debug|x64
+ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Debug|x64.Build.0 = Debug|x64
++ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Release|ARM64.ActiveCfg = Release|ARM64
++ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Release|ARM64.Build.0 = Release|ARM64
+ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Release|Win32.ActiveCfg = Release|Win32
+ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Release|Win32.Build.0 = Release|Win32
+ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Release|x64.ActiveCfg = Release|x64
+ {0837655D-CF8A-4625-B9A2-C49E2B7FDC0C}.Release|x64.Build.0 = Release|x64
++ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Debug|ARM64.Build.0 = Debug|ARM64
+ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Debug|Win32.Build.0 = Debug|Win32
+ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Debug|x64.ActiveCfg = Debug|x64
+ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Debug|x64.Build.0 = Debug|x64
++ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Release|ARM64.ActiveCfg = Release|ARM64
++ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Release|ARM64.Build.0 = Release|ARM64
+ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Release|Win32.ActiveCfg = Release|Win32
+ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Release|Win32.Build.0 = Release|Win32
+ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Release|x64.ActiveCfg = Release|x64
+ {E03D617B-BDA4-4EC8-A935-0D926E22E364}.Release|x64.Build.0 = Release|x64
++ {5633803A-9A09-4087-84B0-0C63D425F72C}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {5633803A-9A09-4087-84B0-0C63D425F72C}.Debug|ARM64.Build.0 = Debug|ARM64
+ {5633803A-9A09-4087-84B0-0C63D425F72C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5633803A-9A09-4087-84B0-0C63D425F72C}.Debug|Win32.Build.0 = Debug|Win32
+ {5633803A-9A09-4087-84B0-0C63D425F72C}.Debug|x64.ActiveCfg = Debug|x64
+ {5633803A-9A09-4087-84B0-0C63D425F72C}.Debug|x64.Build.0 = Debug|x64
++ {5633803A-9A09-4087-84B0-0C63D425F72C}.Release|ARM64.ActiveCfg = Release|ARM64
++ {5633803A-9A09-4087-84B0-0C63D425F72C}.Release|ARM64.Build.0 = Release|ARM64
+ {5633803A-9A09-4087-84B0-0C63D425F72C}.Release|Win32.ActiveCfg = Release|Win32
+ {5633803A-9A09-4087-84B0-0C63D425F72C}.Release|Win32.Build.0 = Release|Win32
+ {5633803A-9A09-4087-84B0-0C63D425F72C}.Release|x64.ActiveCfg = Release|x64
+ {5633803A-9A09-4087-84B0-0C63D425F72C}.Release|x64.Build.0 = Release|x64
++ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Debug|ARM64.Build.0 = Debug|ARM64
+ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Debug|Win32.Build.0 = Debug|Win32
+ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Debug|x64.ActiveCfg = Debug|x64
+ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Debug|x64.Build.0 = Debug|x64
++ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Release|ARM64.ActiveCfg = Release|ARM64
++ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Release|ARM64.Build.0 = Release|ARM64
+ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Release|Win32.ActiveCfg = Release|Win32
+ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Release|Win32.Build.0 = Release|Win32
+ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Release|x64.ActiveCfg = Release|x64
+ {BC1CE36E-B05B-41BB-8432-213DAF1568EA}.Release|x64.Build.0 = Release|x64
++ {25413149-E392-470D-9B40-4FA285C71094}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {25413149-E392-470D-9B40-4FA285C71094}.Debug|ARM64.Build.0 = Debug|ARM64
+ {25413149-E392-470D-9B40-4FA285C71094}.Debug|Win32.ActiveCfg = Debug|Win32
+ {25413149-E392-470D-9B40-4FA285C71094}.Debug|Win32.Build.0 = Debug|Win32
+ {25413149-E392-470D-9B40-4FA285C71094}.Debug|x64.ActiveCfg = Debug|x64
+ {25413149-E392-470D-9B40-4FA285C71094}.Debug|x64.Build.0 = Debug|x64
++ {25413149-E392-470D-9B40-4FA285C71094}.Release|ARM64.ActiveCfg = Release|ARM64
++ {25413149-E392-470D-9B40-4FA285C71094}.Release|ARM64.Build.0 = Release|ARM64
+ {25413149-E392-470D-9B40-4FA285C71094}.Release|Win32.ActiveCfg = Release|Win32
+ {25413149-E392-470D-9B40-4FA285C71094}.Release|Win32.Build.0 = Release|Win32
+ {25413149-E392-470D-9B40-4FA285C71094}.Release|x64.ActiveCfg = Release|x64
+ {25413149-E392-470D-9B40-4FA285C71094}.Release|x64.Build.0 = Release|x64
++ {D8143866-9AEF-4820-B712-89FF16876ABD}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {D8143866-9AEF-4820-B712-89FF16876ABD}.Debug|ARM64.Build.0 = Debug|ARM64
+ {D8143866-9AEF-4820-B712-89FF16876ABD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D8143866-9AEF-4820-B712-89FF16876ABD}.Debug|Win32.Build.0 = Debug|Win32
+ {D8143866-9AEF-4820-B712-89FF16876ABD}.Debug|x64.ActiveCfg = Debug|x64
+ {D8143866-9AEF-4820-B712-89FF16876ABD}.Debug|x64.Build.0 = Debug|x64
++ {D8143866-9AEF-4820-B712-89FF16876ABD}.Release|ARM64.ActiveCfg = Release|ARM64
++ {D8143866-9AEF-4820-B712-89FF16876ABD}.Release|ARM64.Build.0 = Release|ARM64
+ {D8143866-9AEF-4820-B712-89FF16876ABD}.Release|Win32.ActiveCfg = Release|Win32
+ {D8143866-9AEF-4820-B712-89FF16876ABD}.Release|Win32.Build.0 = Release|Win32
+ {D8143866-9AEF-4820-B712-89FF16876ABD}.Release|x64.ActiveCfg = Release|x64
+ {D8143866-9AEF-4820-B712-89FF16876ABD}.Release|x64.Build.0 = Release|x64
++ {004E35BF-4455-42C5-94DA-468597F76156}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {004E35BF-4455-42C5-94DA-468597F76156}.Debug|ARM64.Build.0 = Debug|ARM64
+ {004E35BF-4455-42C5-94DA-468597F76156}.Debug|Win32.ActiveCfg = Debug|Win32
+ {004E35BF-4455-42C5-94DA-468597F76156}.Debug|Win32.Build.0 = Debug|Win32
+ {004E35BF-4455-42C5-94DA-468597F76156}.Debug|x64.ActiveCfg = Debug|x64
+ {004E35BF-4455-42C5-94DA-468597F76156}.Debug|x64.Build.0 = Debug|x64
++ {004E35BF-4455-42C5-94DA-468597F76156}.Release|ARM64.ActiveCfg = Release|ARM64
++ {004E35BF-4455-42C5-94DA-468597F76156}.Release|ARM64.Build.0 = Release|ARM64
+ {004E35BF-4455-42C5-94DA-468597F76156}.Release|Win32.ActiveCfg = Release|Win32
+ {004E35BF-4455-42C5-94DA-468597F76156}.Release|Win32.Build.0 = Release|Win32
+ {004E35BF-4455-42C5-94DA-468597F76156}.Release|x64.ActiveCfg = Release|x64
+ {004E35BF-4455-42C5-94DA-468597F76156}.Release|x64.Build.0 = Release|x64
++ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Debug|Win32.Build.0 = Debug|Win32
+ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Debug|x64.ActiveCfg = Debug|x64
+ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Debug|x64.Build.0 = Debug|x64
++ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Release|ARM64.Build.0 = Release|ARM64
+ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Release|Win32.ActiveCfg = Release|Win32
+ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Release|Win32.Build.0 = Release|Win32
+ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Release|x64.ActiveCfg = Release|x64
+ {E4F400E9-A717-4D73-ACBB-29399DA25E7F}.Release|x64.Build.0 = Release|x64
++ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Debug|ARM64.Build.0 = Debug|ARM64
+ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Debug|Win32.Build.0 = Debug|Win32
+ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Debug|x64.ActiveCfg = Debug|x64
+ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Debug|x64.Build.0 = Debug|x64
++ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Release|ARM64.ActiveCfg = Release|ARM64
++ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Release|ARM64.Build.0 = Release|ARM64
+ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Release|Win32.ActiveCfg = Release|Win32
+ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Release|Win32.Build.0 = Release|Win32
+ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Release|x64.ActiveCfg = Release|x64
+ {6114120D-110E-4C81-A7F0-63EC013C56D6}.Release|x64.Build.0 = Release|x64
++ {165E9831-B8EF-4857-ACA4-261677950214}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {165E9831-B8EF-4857-ACA4-261677950214}.Debug|ARM64.Build.0 = Debug|ARM64
+ {165E9831-B8EF-4857-ACA4-261677950214}.Debug|Win32.ActiveCfg = Debug|Win32
+ {165E9831-B8EF-4857-ACA4-261677950214}.Debug|Win32.Build.0 = Debug|Win32
+ {165E9831-B8EF-4857-ACA4-261677950214}.Debug|x64.ActiveCfg = Debug|x64
+ {165E9831-B8EF-4857-ACA4-261677950214}.Debug|x64.Build.0 = Debug|x64
++ {165E9831-B8EF-4857-ACA4-261677950214}.Release|ARM64.ActiveCfg = Release|ARM64
++ {165E9831-B8EF-4857-ACA4-261677950214}.Release|ARM64.Build.0 = Release|ARM64
+ {165E9831-B8EF-4857-ACA4-261677950214}.Release|Win32.ActiveCfg = Release|Win32
+ {165E9831-B8EF-4857-ACA4-261677950214}.Release|Win32.Build.0 = Release|Win32
+ {165E9831-B8EF-4857-ACA4-261677950214}.Release|x64.ActiveCfg = Release|x64
+ {165E9831-B8EF-4857-ACA4-261677950214}.Release|x64.Build.0 = Release|x64
++ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Debug|ARM64.Build.0 = Debug|ARM64
+ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Debug|Win32.Build.0 = Debug|Win32
+ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Debug|x64.ActiveCfg = Debug|x64
+ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Debug|x64.Build.0 = Debug|x64
++ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Release|ARM64.ActiveCfg = Release|ARM64
++ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Release|ARM64.Build.0 = Release|ARM64
+ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Release|Win32.ActiveCfg = Release|Win32
+ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Release|Win32.Build.0 = Release|Win32
+ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Release|x64.ActiveCfg = Release|x64
+ {E3C009AF-69B7-4732-8509-DD72DBA757B1}.Release|x64.Build.0 = Release|x64
++ {32C0D774-5C56-46A3-B14A-625691E3B626}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {32C0D774-5C56-46A3-B14A-625691E3B626}.Debug|ARM64.Build.0 = Debug|ARM64
+ {32C0D774-5C56-46A3-B14A-625691E3B626}.Debug|Win32.ActiveCfg = Debug|Win32
+ {32C0D774-5C56-46A3-B14A-625691E3B626}.Debug|Win32.Build.0 = Debug|Win32
+ {32C0D774-5C56-46A3-B14A-625691E3B626}.Debug|x64.ActiveCfg = Debug|x64
+ {32C0D774-5C56-46A3-B14A-625691E3B626}.Debug|x64.Build.0 = Debug|x64
++ {32C0D774-5C56-46A3-B14A-625691E3B626}.Release|ARM64.ActiveCfg = Release|ARM64
++ {32C0D774-5C56-46A3-B14A-625691E3B626}.Release|ARM64.Build.0 = Release|ARM64
+ {32C0D774-5C56-46A3-B14A-625691E3B626}.Release|Win32.ActiveCfg = Release|Win32
+ {32C0D774-5C56-46A3-B14A-625691E3B626}.Release|Win32.Build.0 = Release|Win32
+ {32C0D774-5C56-46A3-B14A-625691E3B626}.Release|x64.ActiveCfg = Release|x64
+ {32C0D774-5C56-46A3-B14A-625691E3B626}.Release|x64.Build.0 = Release|x64
++ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Debug|ARM64.Build.0 = Debug|ARM64
+ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Debug|Win32.Build.0 = Debug|Win32
+ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Debug|x64.ActiveCfg = Debug|x64
+ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Debug|x64.Build.0 = Debug|x64
++ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Release|ARM64.ActiveCfg = Release|ARM64
++ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Release|ARM64.Build.0 = Release|ARM64
+ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Release|Win32.ActiveCfg = Release|Win32
+ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Release|Win32.Build.0 = Release|Win32
+ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Release|x64.ActiveCfg = Release|x64
+ {4C3B7646-88AC-4915-A92D-7C4096EDAE24}.Release|x64.Build.0 = Release|x64
++ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Debug|ARM64.Build.0 = Debug|ARM64
+ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Debug|Win32.Build.0 = Debug|Win32
+ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Debug|x64.ActiveCfg = Debug|x64
+ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Debug|x64.Build.0 = Debug|x64
++ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Release|ARM64.ActiveCfg = Release|ARM64
++ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Release|ARM64.Build.0 = Release|ARM64
+ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Release|Win32.ActiveCfg = Release|Win32
+ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Release|Win32.Build.0 = Release|Win32
+ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Release|x64.ActiveCfg = Release|x64
+ {7905E464-EAC1-4DA4-962C-D20DAC6F3327}.Release|x64.Build.0 = Release|x64
++ {123FA41A-5844-4ED0-821C-D465530818F9}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {123FA41A-5844-4ED0-821C-D465530818F9}.Debug|ARM64.Build.0 = Debug|ARM64
+ {123FA41A-5844-4ED0-821C-D465530818F9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {123FA41A-5844-4ED0-821C-D465530818F9}.Debug|Win32.Build.0 = Debug|Win32
+ {123FA41A-5844-4ED0-821C-D465530818F9}.Debug|x64.ActiveCfg = Debug|x64
+ {123FA41A-5844-4ED0-821C-D465530818F9}.Debug|x64.Build.0 = Debug|x64
++ {123FA41A-5844-4ED0-821C-D465530818F9}.Release|ARM64.ActiveCfg = Release|ARM64
++ {123FA41A-5844-4ED0-821C-D465530818F9}.Release|ARM64.Build.0 = Release|ARM64
+ {123FA41A-5844-4ED0-821C-D465530818F9}.Release|Win32.ActiveCfg = Release|Win32
+ {123FA41A-5844-4ED0-821C-D465530818F9}.Release|Win32.Build.0 = Release|Win32
+ {123FA41A-5844-4ED0-821C-D465530818F9}.Release|x64.ActiveCfg = Release|x64
+ {123FA41A-5844-4ED0-821C-D465530818F9}.Release|x64.Build.0 = Release|x64
++ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Debug|ARM64.Build.0 = Debug|ARM64
+ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Debug|Win32.Build.0 = Debug|Win32
+ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Debug|x64.ActiveCfg = Debug|x64
+ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Debug|x64.Build.0 = Debug|x64
++ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Release|ARM64.ActiveCfg = Release|ARM64
++ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Release|ARM64.Build.0 = Release|ARM64
+ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Release|Win32.ActiveCfg = Release|Win32
+ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Release|Win32.Build.0 = Release|Win32
+ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Release|x64.ActiveCfg = Release|x64
+ {A104B1FB-A0E0-4AA0-ABCC-D473054BB979}.Release|x64.Build.0 = Release|x64
++ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Debug|ARM64.Build.0 = Debug|ARM64
+ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Debug|Win32.ActiveCfg = Debug|Win32
+ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Debug|Win32.Build.0 = Debug|Win32
+ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Debug|x64.ActiveCfg = Debug|x64
+ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Debug|x64.Build.0 = Debug|x64
++ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Release|ARM64.ActiveCfg = Release|ARM64
++ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Release|ARM64.Build.0 = Release|ARM64
+ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Release|Win32.ActiveCfg = Release|Win32
+ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Release|Win32.Build.0 = Release|Win32
+ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Release|x64.ActiveCfg = Release|x64
+ {549E1B95-D3F2-4ABE-BD3D-BDE49E75B927}.Release|x64.Build.0 = Release|x64
++ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Debug|ARM64.Build.0 = Debug|ARM64
+ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Debug|Win32.Build.0 = Debug|Win32
+ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Debug|x64.ActiveCfg = Debug|x64
+ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Debug|x64.Build.0 = Debug|x64
++ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Release|ARM64.ActiveCfg = Release|ARM64
++ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Release|ARM64.Build.0 = Release|ARM64
+ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Release|Win32.ActiveCfg = Release|Win32
+ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Release|Win32.Build.0 = Release|Win32
+ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Release|x64.ActiveCfg = Release|x64
+ {329EF5E3-BE7D-45EC-83CB-6F80D1D97FFB}.Release|x64.Build.0 = Release|x64
++ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Debug|ARM64.Build.0 = Debug|ARM64
+ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Debug|Win32.Build.0 = Debug|Win32
+ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Debug|x64.ActiveCfg = Debug|x64
+ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Debug|x64.Build.0 = Debug|x64
++ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Release|ARM64.ActiveCfg = Release|ARM64
++ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Release|ARM64.Build.0 = Release|ARM64
+ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Release|Win32.ActiveCfg = Release|Win32
+ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Release|Win32.Build.0 = Release|Win32
+ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Release|x64.ActiveCfg = Release|x64
+ {92B49C5E-5F18-445C-B290-92AB03B27A6B}.Release|x64.Build.0 = Release|x64
++ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Debug|ARM64.Build.0 = Debug|ARM64
+ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Debug|Win32.Build.0 = Debug|Win32
+ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Debug|x64.ActiveCfg = Debug|x64
+ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Debug|x64.Build.0 = Debug|x64
++ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Release|ARM64.ActiveCfg = Release|ARM64
++ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Release|ARM64.Build.0 = Release|ARM64
+ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Release|Win32.ActiveCfg = Release|Win32
+ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Release|Win32.Build.0 = Release|Win32
+ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Release|x64.ActiveCfg = Release|x64
+ {FC8A14DB-8D5B-4609-8838-675291632ADA}.Release|x64.Build.0 = Release|x64
++ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Debug|ARM64.Build.0 = Debug|ARM64
+ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Debug|Win32.ActiveCfg = Debug|Win32
+ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Debug|Win32.Build.0 = Debug|Win32
+ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Debug|x64.ActiveCfg = Debug|x64
+ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Debug|x64.Build.0 = Debug|x64
++ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Release|ARM64.ActiveCfg = Release|ARM64
++ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Release|ARM64.Build.0 = Release|ARM64
+ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Release|Win32.ActiveCfg = Release|Win32
+ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Release|Win32.Build.0 = Release|Win32
+ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Release|x64.ActiveCfg = Release|x64
+ {31423127-18E5-4C60-AFF9-AE36EFE1C511}.Release|x64.Build.0 = Release|x64
++ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Debug|ARM64.Build.0 = Debug|ARM64
+ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Debug|Win32.Build.0 = Debug|Win32
+ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Debug|x64.ActiveCfg = Debug|x64
+ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Debug|x64.Build.0 = Debug|x64
++ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Release|ARM64.ActiveCfg = Release|ARM64
++ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Release|ARM64.Build.0 = Release|ARM64
+ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Release|Win32.ActiveCfg = Release|Win32
+ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Release|Win32.Build.0 = Release|Win32
+ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Release|x64.ActiveCfg = Release|x64
+ {C31DD6A8-7C99-40CE-B3BE-0F411525E1C6}.Release|x64.Build.0 = Release|x64
++ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Debug|ARM64.Build.0 = Debug|ARM64
+ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Debug|Win32.Build.0 = Debug|Win32
+ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Debug|x64.ActiveCfg = Debug|x64
+ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Debug|x64.Build.0 = Debug|x64
++ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Release|ARM64.ActiveCfg = Release|ARM64
++ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Release|ARM64.Build.0 = Release|ARM64
+ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Release|Win32.ActiveCfg = Release|Win32
+ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Release|Win32.Build.0 = Release|Win32
+ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Release|x64.ActiveCfg = Release|x64
+ {0AE4CB71-FE7F-4969-BA2F-0C6ABF131229}.Release|x64.Build.0 = Release|x64
++ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Debug|ARM64.Build.0 = Debug|ARM64
+ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Debug|Win32.Build.0 = Debug|Win32
+ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Debug|x64.ActiveCfg = Debug|x64
+ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Debug|x64.Build.0 = Debug|x64
++ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Release|ARM64.ActiveCfg = Release|ARM64
++ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Release|ARM64.Build.0 = Release|ARM64
+ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Release|Win32.ActiveCfg = Release|Win32
+ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Release|Win32.Build.0 = Release|Win32
+ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Release|x64.ActiveCfg = Release|x64
+ {F89148E0-94F1-4B8A-B25E-8484558047BC}.Release|x64.Build.0 = Release|x64
++ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Debug|ARM64.Build.0 = Debug|ARM64
+ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Debug|Win32.Build.0 = Debug|Win32
+ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Debug|x64.ActiveCfg = Debug|x64
+ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Debug|x64.Build.0 = Debug|x64
++ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Release|ARM64.ActiveCfg = Release|ARM64
++ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Release|ARM64.Build.0 = Release|ARM64
+ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Release|Win32.ActiveCfg = Release|Win32
+ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Release|Win32.Build.0 = Release|Win32
+ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Release|x64.ActiveCfg = Release|x64
+ {517A628D-6961-4E71-B5EB-A85A1C1425BE}.Release|x64.Build.0 = Release|x64
++ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Debug|ARM64.Build.0 = Debug|ARM64
+ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Debug|Win32.Build.0 = Debug|Win32
+ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Debug|x64.ActiveCfg = Debug|x64
+ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Debug|x64.Build.0 = Debug|x64
++ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Release|ARM64.ActiveCfg = Release|ARM64
++ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Release|ARM64.Build.0 = Release|ARM64
+ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Release|Win32.ActiveCfg = Release|Win32
+ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Release|Win32.Build.0 = Release|Win32
+ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Release|x64.ActiveCfg = Release|x64
+ {7D1AA370-21E1-4B03-B7AE-75B9654BBCFA}.Release|x64.Build.0 = Release|x64
++ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Debug|Win32.Build.0 = Debug|Win32
+ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Debug|x64.ActiveCfg = Debug|x64
+ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Debug|x64.Build.0 = Debug|x64
++ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Release|ARM64.Build.0 = Release|ARM64
+ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Release|Win32.ActiveCfg = Release|Win32
+ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Release|Win32.Build.0 = Release|Win32
+ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Release|x64.ActiveCfg = Release|x64
+ {1D0C1AC1-D607-40ED-B4A0-F013F469D10F}.Release|x64.Build.0 = Release|x64
++ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Debug|ARM64.Build.0 = Debug|ARM64
+ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Debug|Win32.Build.0 = Debug|Win32
+ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Debug|x64.ActiveCfg = Debug|x64
+ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Debug|x64.Build.0 = Debug|x64
++ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Release|ARM64.ActiveCfg = Release|ARM64
++ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Release|ARM64.Build.0 = Release|ARM64
+ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Release|Win32.ActiveCfg = Release|Win32
+ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Release|Win32.Build.0 = Release|Win32
+ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Release|x64.ActiveCfg = Release|x64
+ {02D6A1E4-E2C7-400B-9429-5E3D5D9480DA}.Release|x64.Build.0 = Release|x64
++ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Debug|ARM64.Build.0 = Debug|ARM64
+ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Debug|Win32.ActiveCfg = Debug|Win32
+ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Debug|Win32.Build.0 = Debug|Win32
+ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Debug|x64.ActiveCfg = Debug|x64
+ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Debug|x64.Build.0 = Debug|x64
++ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Release|ARM64.ActiveCfg = Release|ARM64
++ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Release|ARM64.Build.0 = Release|ARM64
+ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Release|Win32.ActiveCfg = Release|Win32
+ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Release|Win32.Build.0 = Release|Win32
+ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Release|x64.ActiveCfg = Release|x64
+ {589879B3-C37E-4EE9-A063-6FF419DC8CD1}.Release|x64.Build.0 = Release|x64
++ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Debug|ARM64.Build.0 = Debug|ARM64
+ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Debug|Win32.Build.0 = Debug|Win32
+ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Debug|x64.ActiveCfg = Debug|x64
+ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Debug|x64.Build.0 = Debug|x64
++ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Release|ARM64.ActiveCfg = Release|ARM64
++ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Release|ARM64.Build.0 = Release|ARM64
+ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Release|Win32.ActiveCfg = Release|Win32
+ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Release|Win32.Build.0 = Release|Win32
+ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Release|x64.ActiveCfg = Release|x64
+ {2A6A40B9-0D5A-4457-A77B-831BD00772A7}.Release|x64.Build.0 = Release|x64
++ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Debug|ARM64.Build.0 = Debug|ARM64
+ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Debug|Win32.Build.0 = Debug|Win32
+ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Debug|x64.ActiveCfg = Debug|x64
+ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Debug|x64.Build.0 = Debug|x64
++ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Release|ARM64.ActiveCfg = Release|ARM64
++ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Release|ARM64.Build.0 = Release|ARM64
+ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Release|Win32.ActiveCfg = Release|Win32
+ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Release|Win32.Build.0 = Release|Win32
+ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Release|x64.ActiveCfg = Release|x64
+ {CAC13AAE-ABF9-47E2-8DFB-08AA506FF50A}.Release|x64.Build.0 = Release|x64
++ {A18471D1-BEDD-464A-8581-6B128A828B07}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {A18471D1-BEDD-464A-8581-6B128A828B07}.Debug|ARM64.Build.0 = Debug|ARM64
+ {A18471D1-BEDD-464A-8581-6B128A828B07}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A18471D1-BEDD-464A-8581-6B128A828B07}.Debug|Win32.Build.0 = Debug|Win32
+ {A18471D1-BEDD-464A-8581-6B128A828B07}.Debug|x64.ActiveCfg = Debug|x64
+ {A18471D1-BEDD-464A-8581-6B128A828B07}.Debug|x64.Build.0 = Debug|x64
++ {A18471D1-BEDD-464A-8581-6B128A828B07}.Release|ARM64.ActiveCfg = Release|ARM64
++ {A18471D1-BEDD-464A-8581-6B128A828B07}.Release|ARM64.Build.0 = Release|ARM64
+ {A18471D1-BEDD-464A-8581-6B128A828B07}.Release|Win32.ActiveCfg = Release|Win32
+ {A18471D1-BEDD-464A-8581-6B128A828B07}.Release|Win32.Build.0 = Release|Win32
+ {A18471D1-BEDD-464A-8581-6B128A828B07}.Release|x64.ActiveCfg = Release|x64
+ {A18471D1-BEDD-464A-8581-6B128A828B07}.Release|x64.Build.0 = Release|x64
++ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Debug|ARM64.Build.0 = Debug|ARM64
+ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Debug|Win32.Build.0 = Debug|Win32
+ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Debug|x64.ActiveCfg = Debug|x64
+ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Debug|x64.Build.0 = Debug|x64
++ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Release|ARM64.ActiveCfg = Release|ARM64
++ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Release|ARM64.Build.0 = Release|ARM64
+ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Release|Win32.ActiveCfg = Release|Win32
+ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Release|Win32.Build.0 = Release|Win32
+ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Release|x64.ActiveCfg = Release|x64
+ {7DED61E4-5229-4F03-8E52-165FE173E1A2}.Release|x64.Build.0 = Release|x64
++ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Debug|ARM64.Build.0 = Debug|ARM64
+ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Debug|Win32.Build.0 = Debug|Win32
+ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Debug|x64.ActiveCfg = Debug|x64
+ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Debug|x64.Build.0 = Debug|x64
++ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Release|ARM64.ActiveCfg = Release|ARM64
++ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Release|ARM64.Build.0 = Release|ARM64
+ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Release|Win32.ActiveCfg = Release|Win32
+ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Release|Win32.Build.0 = Release|Win32
+ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Release|x64.ActiveCfg = Release|x64
+ {18D3EF75-6C36-46C0-B102-377B37F6C3E2}.Release|x64.Build.0 = Release|x64
++ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Debug|ARM64.Build.0 = Debug|ARM64
+ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Debug|Win32.Build.0 = Debug|Win32
+ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Debug|x64.ActiveCfg = Debug|x64
+ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Debug|x64.Build.0 = Debug|x64
++ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Release|ARM64.ActiveCfg = Release|ARM64
++ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Release|ARM64.Build.0 = Release|ARM64
+ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Release|Win32.ActiveCfg = Release|Win32
+ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Release|Win32.Build.0 = Release|Win32
+ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Release|x64.ActiveCfg = Release|x64
+ {EC50393D-5E56-4F43-80F5-7C816AFFBEF0}.Release|x64.Build.0 = Release|x64
++ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Debug|ARM64.Build.0 = Debug|ARM64
+ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Debug|Win32.Build.0 = Debug|Win32
+ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Debug|x64.ActiveCfg = Debug|x64
+ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Debug|x64.Build.0 = Debug|x64
++ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Release|ARM64.ActiveCfg = Release|ARM64
++ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Release|ARM64.Build.0 = Release|ARM64
+ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Release|Win32.ActiveCfg = Release|Win32
+ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Release|Win32.Build.0 = Release|Win32
+ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Release|x64.ActiveCfg = Release|x64
+ {FACD3CA8-671C-4A05-A7BF-B5D345F96337}.Release|x64.Build.0 = Release|x64
++ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Debug|ARM64.Build.0 = Debug|ARM64
+ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Debug|Win32.Build.0 = Debug|Win32
+ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Debug|x64.ActiveCfg = Debug|x64
+ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Debug|x64.Build.0 = Debug|x64
++ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Release|ARM64.ActiveCfg = Release|ARM64
++ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Release|ARM64.Build.0 = Release|ARM64
+ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Release|Win32.ActiveCfg = Release|Win32
+ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Release|Win32.Build.0 = Release|Win32
+ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Release|x64.ActiveCfg = Release|x64
+ {E651C0A1-4574-43E9-897E-38E1A0B24F07}.Release|x64.Build.0 = Release|x64
++ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Debug|ARM64.Build.0 = Debug|ARM64
+ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Debug|Win32.Build.0 = Debug|Win32
+ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Debug|x64.ActiveCfg = Debug|x64
+ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Debug|x64.Build.0 = Debug|x64
++ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Release|ARM64.ActiveCfg = Release|ARM64
++ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Release|ARM64.Build.0 = Release|ARM64
+ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Release|Win32.ActiveCfg = Release|Win32
+ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Release|Win32.Build.0 = Release|Win32
+ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Release|x64.ActiveCfg = Release|x64
+ {8AFFEB34-67F5-4AF5-ACBF-380FF5CDB689}.Release|x64.Build.0 = Release|x64
++ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Debug|ARM64.Build.0 = Debug|ARM64
+ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Debug|Win32.Build.0 = Debug|Win32
+ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Debug|x64.ActiveCfg = Debug|x64
+ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Debug|x64.Build.0 = Debug|x64
++ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Release|ARM64.ActiveCfg = Release|ARM64
++ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Release|ARM64.Build.0 = Release|ARM64
+ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Release|Win32.ActiveCfg = Release|Win32
+ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Release|Win32.Build.0 = Release|Win32
+ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Release|x64.ActiveCfg = Release|x64
+ {C18CA7DE-01C1-4380-B5A4-E131C891476B}.Release|x64.Build.0 = Release|x64
++ {9847994C-E043-4E29-9263-AB7C3E961878}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {9847994C-E043-4E29-9263-AB7C3E961878}.Debug|ARM64.Build.0 = Debug|ARM64
+ {9847994C-E043-4E29-9263-AB7C3E961878}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9847994C-E043-4E29-9263-AB7C3E961878}.Debug|Win32.Build.0 = Debug|Win32
+ {9847994C-E043-4E29-9263-AB7C3E961878}.Debug|x64.ActiveCfg = Debug|x64
+ {9847994C-E043-4E29-9263-AB7C3E961878}.Debug|x64.Build.0 = Debug|x64
++ {9847994C-E043-4E29-9263-AB7C3E961878}.Release|ARM64.ActiveCfg = Release|ARM64
++ {9847994C-E043-4E29-9263-AB7C3E961878}.Release|ARM64.Build.0 = Release|ARM64
+ {9847994C-E043-4E29-9263-AB7C3E961878}.Release|Win32.ActiveCfg = Release|Win32
+ {9847994C-E043-4E29-9263-AB7C3E961878}.Release|Win32.Build.0 = Release|Win32
+ {9847994C-E043-4E29-9263-AB7C3E961878}.Release|x64.ActiveCfg = Release|x64
+ {9847994C-E043-4E29-9263-AB7C3E961878}.Release|x64.Build.0 = Release|x64
++ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Debug|ARM64.Build.0 = Debug|ARM64
+ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Debug|Win32.Build.0 = Debug|Win32
+ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Debug|x64.ActiveCfg = Debug|x64
+ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Debug|x64.Build.0 = Debug|x64
++ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Release|ARM64.ActiveCfg = Release|ARM64
++ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Release|ARM64.Build.0 = Release|ARM64
+ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Release|Win32.ActiveCfg = Release|Win32
+ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Release|Win32.Build.0 = Release|Win32
+ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Release|x64.ActiveCfg = Release|x64
+ {CF89180E-B469-4E07-A2CB-01D0329A996D}.Release|x64.Build.0 = Release|x64
++ {96623DCD-5CBF-4D67-8619-34FD31900908}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {96623DCD-5CBF-4D67-8619-34FD31900908}.Debug|ARM64.Build.0 = Debug|ARM64
+ {96623DCD-5CBF-4D67-8619-34FD31900908}.Debug|Win32.ActiveCfg = Debug|Win32
+ {96623DCD-5CBF-4D67-8619-34FD31900908}.Debug|Win32.Build.0 = Debug|Win32
+ {96623DCD-5CBF-4D67-8619-34FD31900908}.Debug|x64.ActiveCfg = Debug|x64
+ {96623DCD-5CBF-4D67-8619-34FD31900908}.Debug|x64.Build.0 = Debug|x64
++ {96623DCD-5CBF-4D67-8619-34FD31900908}.Release|ARM64.ActiveCfg = Release|ARM64
++ {96623DCD-5CBF-4D67-8619-34FD31900908}.Release|ARM64.Build.0 = Release|ARM64
+ {96623DCD-5CBF-4D67-8619-34FD31900908}.Release|Win32.ActiveCfg = Release|Win32
+ {96623DCD-5CBF-4D67-8619-34FD31900908}.Release|Win32.Build.0 = Release|Win32
+ {96623DCD-5CBF-4D67-8619-34FD31900908}.Release|x64.ActiveCfg = Release|x64
+ {96623DCD-5CBF-4D67-8619-34FD31900908}.Release|x64.Build.0 = Release|x64
++ {6011B9C8-463C-464E-AB74-592218D89B41}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {6011B9C8-463C-464E-AB74-592218D89B41}.Debug|ARM64.Build.0 = Debug|ARM64
+ {6011B9C8-463C-464E-AB74-592218D89B41}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6011B9C8-463C-464E-AB74-592218D89B41}.Debug|Win32.Build.0 = Debug|Win32
+ {6011B9C8-463C-464E-AB74-592218D89B41}.Debug|x64.ActiveCfg = Debug|x64
+ {6011B9C8-463C-464E-AB74-592218D89B41}.Debug|x64.Build.0 = Debug|x64
++ {6011B9C8-463C-464E-AB74-592218D89B41}.Release|ARM64.ActiveCfg = Release|ARM64
++ {6011B9C8-463C-464E-AB74-592218D89B41}.Release|ARM64.Build.0 = Release|ARM64
+ {6011B9C8-463C-464E-AB74-592218D89B41}.Release|Win32.ActiveCfg = Release|Win32
+ {6011B9C8-463C-464E-AB74-592218D89B41}.Release|Win32.Build.0 = Release|Win32
+ {6011B9C8-463C-464E-AB74-592218D89B41}.Release|x64.ActiveCfg = Release|x64
+ {6011B9C8-463C-464E-AB74-592218D89B41}.Release|x64.Build.0 = Release|x64
++ {9FE67414-4051-4208-B4BB-B114EABE139A}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {9FE67414-4051-4208-B4BB-B114EABE139A}.Debug|ARM64.Build.0 = Debug|ARM64
+ {9FE67414-4051-4208-B4BB-B114EABE139A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9FE67414-4051-4208-B4BB-B114EABE139A}.Debug|Win32.Build.0 = Debug|Win32
+ {9FE67414-4051-4208-B4BB-B114EABE139A}.Debug|x64.ActiveCfg = Debug|x64
+ {9FE67414-4051-4208-B4BB-B114EABE139A}.Debug|x64.Build.0 = Debug|x64
++ {9FE67414-4051-4208-B4BB-B114EABE139A}.Release|ARM64.ActiveCfg = Release|ARM64
++ {9FE67414-4051-4208-B4BB-B114EABE139A}.Release|ARM64.Build.0 = Release|ARM64
+ {9FE67414-4051-4208-B4BB-B114EABE139A}.Release|Win32.ActiveCfg = Release|Win32
+ {9FE67414-4051-4208-B4BB-B114EABE139A}.Release|Win32.Build.0 = Release|Win32
+ {9FE67414-4051-4208-B4BB-B114EABE139A}.Release|x64.ActiveCfg = Release|x64
+ {9FE67414-4051-4208-B4BB-B114EABE139A}.Release|x64.Build.0 = Release|x64
++ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Debug|ARM64.Build.0 = Debug|ARM64
+ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Debug|Win32.Build.0 = Debug|Win32
+ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Debug|x64.ActiveCfg = Debug|x64
+ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Debug|x64.Build.0 = Debug|x64
++ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Release|ARM64.ActiveCfg = Release|ARM64
++ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Release|ARM64.Build.0 = Release|ARM64
+ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Release|Win32.ActiveCfg = Release|Win32
+ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Release|Win32.Build.0 = Release|Win32
+ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Release|x64.ActiveCfg = Release|x64
+ {BADABF03-AD0E-4717-9473-BD23B72FAA39}.Release|x64.Build.0 = Release|x64
++ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Debug|ARM64.Build.0 = Debug|ARM64
+ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Debug|Win32.Build.0 = Debug|Win32
+ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Debug|x64.ActiveCfg = Debug|x64
+ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Debug|x64.Build.0 = Debug|x64
++ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Release|ARM64.ActiveCfg = Release|ARM64
++ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Release|ARM64.Build.0 = Release|ARM64
+ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Release|Win32.ActiveCfg = Release|Win32
+ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Release|Win32.Build.0 = Release|Win32
+ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Release|x64.ActiveCfg = Release|x64
+ {C93DF7EF-78AC-4E29-AA7C-A3600BB4AA76}.Release|x64.Build.0 = Release|x64
++ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Debug|Win32.Build.0 = Debug|Win32
+ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Debug|x64.ActiveCfg = Debug|x64
+ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Debug|x64.Build.0 = Debug|x64
++ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Release|ARM64.Build.0 = Release|ARM64
+ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Release|Win32.ActiveCfg = Release|Win32
+ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Release|Win32.Build.0 = Release|Win32
+ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Release|x64.ActiveCfg = Release|x64
+ {D705539E-37BF-4CF1-B828-8D3D2665EB0F}.Release|x64.Build.0 = Release|x64
++ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Debug|ARM64.Build.0 = Debug|ARM64
+ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Debug|Win32.ActiveCfg = Debug|Win32
+ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Debug|Win32.Build.0 = Debug|Win32
+ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Debug|x64.ActiveCfg = Debug|x64
+ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Debug|x64.Build.0 = Debug|x64
++ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Release|ARM64.ActiveCfg = Release|ARM64
++ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Release|ARM64.Build.0 = Release|ARM64
+ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Release|Win32.ActiveCfg = Release|Win32
+ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Release|Win32.Build.0 = Release|Win32
+ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Release|x64.ActiveCfg = Release|x64
+ {225FE63C-6AA5-47CF-8605-F6D39854A042}.Release|x64.Build.0 = Release|x64
++ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Debug|ARM64.Build.0 = Debug|ARM64
+ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Debug|Win32.Build.0 = Debug|Win32
+ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Debug|x64.ActiveCfg = Debug|x64
+ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Debug|x64.Build.0 = Debug|x64
++ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Release|ARM64.ActiveCfg = Release|ARM64
++ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Release|ARM64.Build.0 = Release|ARM64
+ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Release|Win32.ActiveCfg = Release|Win32
+ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Release|Win32.Build.0 = Release|Win32
+ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Release|x64.ActiveCfg = Release|x64
+ {9B757965-0ACF-4289-B7A0-08230AB59F79}.Release|x64.Build.0 = Release|x64
++ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Debug|ARM64.Build.0 = Debug|ARM64
+ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Debug|Win32.ActiveCfg = Debug|Win32
+ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Debug|Win32.Build.0 = Debug|Win32
+ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Debug|x64.ActiveCfg = Debug|x64
+ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Debug|x64.Build.0 = Debug|x64
++ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Release|ARM64.ActiveCfg = Release|ARM64
++ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Release|ARM64.Build.0 = Release|ARM64
+ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Release|Win32.ActiveCfg = Release|Win32
+ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Release|Win32.Build.0 = Release|Win32
+ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Release|x64.ActiveCfg = Release|x64
+ {EDA93DE7-D2C9-496A-A6E5-960A067D9772}.Release|x64.Build.0 = Release|x64
++ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Debug|ARM64.Build.0 = Debug|ARM64
+ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Debug|Win32.ActiveCfg = Debug|Win32
+ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Debug|Win32.Build.0 = Debug|Win32
+ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Debug|x64.ActiveCfg = Debug|x64
+ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Debug|x64.Build.0 = Debug|x64
++ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Release|ARM64.ActiveCfg = Release|ARM64
++ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Release|ARM64.Build.0 = Release|ARM64
+ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Release|Win32.ActiveCfg = Release|Win32
+ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Release|Win32.Build.0 = Release|Win32
+ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Release|x64.ActiveCfg = Release|x64
+ {11F4418F-D6C2-43E3-886D-5E60758B0B44}.Release|x64.Build.0 = Release|x64
++ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Debug|Win32.Build.0 = Debug|Win32
+ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Debug|x64.ActiveCfg = Debug|x64
+ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Debug|x64.Build.0 = Debug|x64
++ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Release|ARM64.ActiveCfg = Release|ARM64
++ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Release|ARM64.Build.0 = Release|ARM64
+ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Release|Win32.ActiveCfg = Release|Win32
+ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Release|Win32.Build.0 = Release|Win32
+ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Release|x64.ActiveCfg = Release|x64
+ {26C258B1-9751-487A-9971-FF1813E5BE9F}.Release|x64.Build.0 = Release|x64
++ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Debug|ARM64.Build.0 = Debug|ARM64
+ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Debug|Win32.Build.0 = Debug|Win32
+ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Debug|x64.ActiveCfg = Debug|x64
+ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Debug|x64.Build.0 = Debug|x64
++ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Release|ARM64.ActiveCfg = Release|ARM64
++ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Release|ARM64.Build.0 = Release|ARM64
+ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Release|Win32.ActiveCfg = Release|Win32
+ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Release|Win32.Build.0 = Release|Win32
+ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Release|x64.ActiveCfg = Release|x64
+ {11AEFA4F-1EEF-46C7-B08D-E4F2213A45B7}.Release|x64.Build.0 = Release|x64
++ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Debug|ARM64.Build.0 = Debug|ARM64
+ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Debug|Win32.Build.0 = Debug|Win32
+ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Debug|x64.ActiveCfg = Debug|x64
+ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Debug|x64.Build.0 = Debug|x64
++ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Release|ARM64.ActiveCfg = Release|ARM64
++ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Release|ARM64.Build.0 = Release|ARM64
+ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Release|Win32.ActiveCfg = Release|Win32
+ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Release|Win32.Build.0 = Release|Win32
+ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Release|x64.ActiveCfg = Release|x64
+ {9D5F7763-FF7B-4936-9861-819B5BDD9BA1}.Release|x64.Build.0 = Release|x64
++ {A9AD6430-C35C-4A75-979C-391490242F86}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {A9AD6430-C35C-4A75-979C-391490242F86}.Debug|ARM64.Build.0 = Debug|ARM64
+ {A9AD6430-C35C-4A75-979C-391490242F86}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A9AD6430-C35C-4A75-979C-391490242F86}.Debug|Win32.Build.0 = Debug|Win32
+ {A9AD6430-C35C-4A75-979C-391490242F86}.Debug|x64.ActiveCfg = Debug|x64
+ {A9AD6430-C35C-4A75-979C-391490242F86}.Debug|x64.Build.0 = Debug|x64
++ {A9AD6430-C35C-4A75-979C-391490242F86}.Release|ARM64.ActiveCfg = Release|ARM64
++ {A9AD6430-C35C-4A75-979C-391490242F86}.Release|ARM64.Build.0 = Release|ARM64
+ {A9AD6430-C35C-4A75-979C-391490242F86}.Release|Win32.ActiveCfg = Release|Win32
+ {A9AD6430-C35C-4A75-979C-391490242F86}.Release|Win32.Build.0 = Release|Win32
+ {A9AD6430-C35C-4A75-979C-391490242F86}.Release|x64.ActiveCfg = Release|x64
+ {A9AD6430-C35C-4A75-979C-391490242F86}.Release|x64.Build.0 = Release|x64
++ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Debug|ARM64.Build.0 = Debug|ARM64
+ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Debug|Win32.Build.0 = Debug|Win32
+ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Debug|x64.ActiveCfg = Debug|x64
+ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Debug|x64.Build.0 = Debug|x64
++ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Release|ARM64.ActiveCfg = Release|ARM64
++ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Release|ARM64.Build.0 = Release|ARM64
+ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Release|Win32.ActiveCfg = Release|Win32
+ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Release|Win32.Build.0 = Release|Win32
+ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Release|x64.ActiveCfg = Release|x64
+ {D68B75F1-A6F1-425D-9923-03D67AC62D54}.Release|x64.Build.0 = Release|x64
++ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Debug|ARM64.Build.0 = Debug|ARM64
+ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Debug|Win32.ActiveCfg = Debug|Win32
+ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Debug|Win32.Build.0 = Debug|Win32
+ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Debug|x64.ActiveCfg = Debug|x64
+ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Debug|x64.Build.0 = Debug|x64
++ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Release|ARM64.ActiveCfg = Release|ARM64
++ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Release|ARM64.Build.0 = Release|ARM64
+ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Release|Win32.ActiveCfg = Release|Win32
+ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Release|Win32.Build.0 = Release|Win32
+ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Release|x64.ActiveCfg = Release|x64
+ {943E7822-6E58-4F55-BD2F-A4A421D577E5}.Release|x64.Build.0 = Release|x64
++ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Debug|ARM64.Build.0 = Debug|ARM64
+ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Debug|Win32.Build.0 = Debug|Win32
+ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Debug|x64.ActiveCfg = Debug|x64
+ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Debug|x64.Build.0 = Debug|x64
++ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Release|ARM64.ActiveCfg = Release|ARM64
++ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Release|ARM64.Build.0 = Release|ARM64
+ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Release|Win32.ActiveCfg = Release|Win32
+ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Release|Win32.Build.0 = Release|Win32
+ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Release|x64.ActiveCfg = Release|x64
+ {0B7831C0-52EF-4A09-AD37-5E6F4CBA28E4}.Release|x64.Build.0 = Release|x64
++ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Debug|ARM64.Build.0 = Debug|ARM64
+ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Debug|Win32.Build.0 = Debug|Win32
+ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Debug|x64.ActiveCfg = Debug|x64
+ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Debug|x64.Build.0 = Debug|x64
++ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Release|ARM64.ActiveCfg = Release|ARM64
++ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Release|ARM64.Build.0 = Release|ARM64
+ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Release|Win32.ActiveCfg = Release|Win32
+ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Release|Win32.Build.0 = Release|Win32
+ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Release|x64.ActiveCfg = Release|x64
+ {2FD12E1A-40CD-4BC3-9C27-BD87B8F23A60}.Release|x64.Build.0 = Release|x64
++ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Debug|ARM64.Build.0 = Debug|ARM64
+ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Debug|Win32.Build.0 = Debug|Win32
+ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Debug|x64.ActiveCfg = Debug|x64
+ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Debug|x64.Build.0 = Debug|x64
++ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Release|ARM64.ActiveCfg = Release|ARM64
++ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Release|ARM64.Build.0 = Release|ARM64
+ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Release|Win32.ActiveCfg = Release|Win32
+ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Release|Win32.Build.0 = Release|Win32
+ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Release|x64.ActiveCfg = Release|x64
+ {4E16E373-475F-4F4A-B394-D88D0532EF0E}.Release|x64.Build.0 = Release|x64
++ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Debug|ARM64.Build.0 = Debug|ARM64
+ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Debug|Win32.Build.0 = Debug|Win32
+ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Debug|x64.ActiveCfg = Debug|x64
+ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Debug|x64.Build.0 = Debug|x64
++ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Release|ARM64.ActiveCfg = Release|ARM64
++ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Release|ARM64.Build.0 = Release|ARM64
+ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Release|Win32.ActiveCfg = Release|Win32
+ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Release|Win32.Build.0 = Release|Win32
+ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Release|x64.ActiveCfg = Release|x64
+ {0CB70131-B8C0-4780-B62E-776CD3F98BC7}.Release|x64.Build.0 = Release|x64
++ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Debug|ARM64.Build.0 = Debug|ARM64
+ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Debug|Win32.Build.0 = Debug|Win32
+ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Debug|x64.ActiveCfg = Debug|x64
+ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Debug|x64.Build.0 = Debug|x64
++ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Release|ARM64.ActiveCfg = Release|ARM64
++ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Release|ARM64.Build.0 = Release|ARM64
+ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Release|Win32.ActiveCfg = Release|Win32
+ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Release|Win32.Build.0 = Release|Win32
+ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Release|x64.ActiveCfg = Release|x64
+ {9140227A-2900-4DE4-BD22-BFDD954F9BFB}.Release|x64.Build.0 = Release|x64
++ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Debug|ARM64.Build.0 = Debug|ARM64
+ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Debug|Win32.Build.0 = Debug|Win32
+ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Debug|x64.ActiveCfg = Debug|x64
+ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Debug|x64.Build.0 = Debug|x64
++ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Release|ARM64.ActiveCfg = Release|ARM64
++ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Release|ARM64.Build.0 = Release|ARM64
+ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Release|Win32.ActiveCfg = Release|Win32
+ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Release|Win32.Build.0 = Release|Win32
+ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Release|x64.ActiveCfg = Release|x64
+ {9931ACC4-18E3-4251-A432-CD287DF0883C}.Release|x64.Build.0 = Release|x64
++ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Debug|ARM64.Build.0 = Debug|ARM64
+ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Debug|Win32.Build.0 = Debug|Win32
+ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Debug|x64.ActiveCfg = Debug|x64
+ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Debug|x64.Build.0 = Debug|x64
++ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Release|ARM64.ActiveCfg = Release|ARM64
++ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Release|ARM64.Build.0 = Release|ARM64
+ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Release|Win32.ActiveCfg = Release|Win32
+ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Release|Win32.Build.0 = Release|Win32
+ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Release|x64.ActiveCfg = Release|x64
+ {8A8D1E59-166A-4C6F-8E64-CE6CC494F2F2}.Release|x64.Build.0 = Release|x64
++ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Debug|ARM64.Build.0 = Debug|ARM64
+ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Debug|Win32.Build.0 = Debug|Win32
+ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Debug|x64.ActiveCfg = Debug|x64
+ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Debug|x64.Build.0 = Debug|x64
++ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Release|ARM64.ActiveCfg = Release|ARM64
++ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Release|ARM64.Build.0 = Release|ARM64
+ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Release|Win32.ActiveCfg = Release|Win32
+ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Release|Win32.Build.0 = Release|Win32
+ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Release|x64.ActiveCfg = Release|x64
+ {F5CA9AEE-FD4D-43B8-9DE5-2A13F1AFF457}.Release|x64.Build.0 = Release|x64
++ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Debug|ARM64.Build.0 = Debug|ARM64
+ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Debug|Win32.Build.0 = Debug|Win32
+ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Debug|x64.ActiveCfg = Debug|x64
+ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Debug|x64.Build.0 = Debug|x64
++ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Release|ARM64.ActiveCfg = Release|ARM64
++ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Release|ARM64.Build.0 = Release|ARM64
+ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Release|Win32.ActiveCfg = Release|Win32
+ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Release|Win32.Build.0 = Release|Win32
+ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Release|x64.ActiveCfg = Release|x64
+ {DAB0C701-06F3-4FEE-AE96-262A5CBD87C7}.Release|x64.Build.0 = Release|x64
++ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Debug|ARM64.Build.0 = Debug|ARM64
+ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Debug|Win32.ActiveCfg = Debug|Win32
+ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Debug|Win32.Build.0 = Debug|Win32
+ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Debug|x64.ActiveCfg = Debug|x64
+ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Debug|x64.Build.0 = Debug|x64
++ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Release|ARM64.ActiveCfg = Release|ARM64
++ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Release|ARM64.Build.0 = Release|ARM64
+ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Release|Win32.ActiveCfg = Release|Win32
+ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Release|Win32.Build.0 = Release|Win32
+ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Release|x64.ActiveCfg = Release|x64
+ {75C62084-AF84-94A1-751B-1DDBBD96F648}.Release|x64.Build.0 = Release|x64
++ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Debug|ARM64.Build.0 = Debug|ARM64
+ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Debug|Win32.Build.0 = Debug|Win32
+ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Debug|x64.ActiveCfg = Debug|x64
+ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Debug|x64.Build.0 = Debug|x64
++ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Release|ARM64.ActiveCfg = Release|ARM64
++ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Release|ARM64.Build.0 = Release|ARM64
+ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Release|Win32.ActiveCfg = Release|Win32
+ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Release|Win32.Build.0 = Release|Win32
+ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Release|x64.ActiveCfg = Release|x64
+ {C94BF7C7-CEDD-4CAF-9371-BDAABB419E8C}.Release|x64.Build.0 = Release|x64
++ {73F41343-D63E-CF15-D549-DF9483F260B9}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {73F41343-D63E-CF15-D549-DF9483F260B9}.Debug|ARM64.Build.0 = Debug|ARM64
+ {73F41343-D63E-CF15-D549-DF9483F260B9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {73F41343-D63E-CF15-D549-DF9483F260B9}.Debug|Win32.Build.0 = Debug|Win32
+ {73F41343-D63E-CF15-D549-DF9483F260B9}.Debug|x64.ActiveCfg = Debug|x64
+ {73F41343-D63E-CF15-D549-DF9483F260B9}.Debug|x64.Build.0 = Debug|x64
++ {73F41343-D63E-CF15-D549-DF9483F260B9}.Release|ARM64.ActiveCfg = Release|ARM64
++ {73F41343-D63E-CF15-D549-DF9483F260B9}.Release|ARM64.Build.0 = Release|ARM64
+ {73F41343-D63E-CF15-D549-DF9483F260B9}.Release|Win32.ActiveCfg = Release|Win32
+ {73F41343-D63E-CF15-D549-DF9483F260B9}.Release|Win32.Build.0 = Release|Win32
+ {73F41343-D63E-CF15-D549-DF9483F260B9}.Release|x64.ActiveCfg = Release|x64
+ {73F41343-D63E-CF15-D549-DF9483F260B9}.Release|x64.Build.0 = Release|x64
++ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Debug|ARM64.Build.0 = Debug|ARM64
+ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Debug|Win32.ActiveCfg = Debug|Win32
+ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Debug|Win32.Build.0 = Debug|Win32
+ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Debug|x64.ActiveCfg = Debug|x64
+ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Debug|x64.Build.0 = Debug|x64
++ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Release|ARM64.ActiveCfg = Release|ARM64
++ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Release|ARM64.Build.0 = Release|ARM64
+ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Release|Win32.ActiveCfg = Release|Win32
+ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Release|Win32.Build.0 = Release|Win32
+ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Release|x64.ActiveCfg = Release|x64
+ {EF613D11-70B1-5F25-5B2C-A561F2098B82}.Release|x64.Build.0 = Release|x64
++ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Debug|ARM64.Build.0 = Debug|ARM64
+ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Debug|Win32.Build.0 = Debug|Win32
+ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Debug|x64.ActiveCfg = Debug|x64
+ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Debug|x64.Build.0 = Debug|x64
++ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Release|ARM64.ActiveCfg = Release|ARM64
++ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Release|ARM64.Build.0 = Release|ARM64
+ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Release|Win32.ActiveCfg = Release|Win32
+ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Release|Win32.Build.0 = Release|Win32
+ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Release|x64.ActiveCfg = Release|x64
+ {4614B956-8BFC-40A7-89D0-18AE31671D7D}.Release|x64.Build.0 = Release|x64
++ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Debug|ARM64.Build.0 = Debug|ARM64
+ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Debug|Win32.Build.0 = Debug|Win32
+ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Debug|x64.ActiveCfg = Debug|x64
+ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Debug|x64.Build.0 = Debug|x64
++ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Release|ARM64.ActiveCfg = Release|ARM64
++ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Release|ARM64.Build.0 = Release|ARM64
+ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Release|Win32.ActiveCfg = Release|Win32
+ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Release|Win32.Build.0 = Release|Win32
+ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Release|x64.ActiveCfg = Release|x64
+ {78C5B90C-6509-48E8-85BD-3D4F5060351D}.Release|x64.Build.0 = Release|x64
++ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Debug|ARM64.Build.0 = Debug|ARM64
+ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Debug|Win32.Build.0 = Debug|Win32
+ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Debug|x64.ActiveCfg = Debug|x64
+ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Debug|x64.Build.0 = Debug|x64
++ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Release|ARM64.ActiveCfg = Release|ARM64
++ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Release|ARM64.Build.0 = Release|ARM64
+ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Release|Win32.ActiveCfg = Release|Win32
+ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Release|Win32.Build.0 = Release|Win32
+ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Release|x64.ActiveCfg = Release|x64
+ {AE57384E-BA9D-D3FB-9F69-043F9BF618CE}.Release|x64.Build.0 = Release|x64
++ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Debug|ARM64.Build.0 = Debug|ARM64
+ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Debug|Win32.Build.0 = Debug|Win32
+ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Debug|x64.ActiveCfg = Debug|x64
+ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Debug|x64.Build.0 = Debug|x64
++ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Release|ARM64.ActiveCfg = Release|ARM64
++ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Release|ARM64.Build.0 = Release|ARM64
+ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Release|Win32.ActiveCfg = Release|Win32
+ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Release|Win32.Build.0 = Release|Win32
+ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Release|x64.ActiveCfg = Release|x64
+ {F90EB29D-FD0E-327C-7DCF-BDDC5819B937}.Release|x64.Build.0 = Release|x64
++ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Debug|ARM64.Build.0 = Debug|ARM64
+ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Debug|Win32.Build.0 = Debug|Win32
+ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Debug|x64.ActiveCfg = Debug|x64
+ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Debug|x64.Build.0 = Debug|x64
++ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Release|ARM64.ActiveCfg = Release|ARM64
++ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Release|ARM64.Build.0 = Release|ARM64
+ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Release|Win32.ActiveCfg = Release|Win32
+ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Release|Win32.Build.0 = Release|Win32
+ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Release|x64.ActiveCfg = Release|x64
+ {B4E1761A-1226-BB87-9B56-B4A6A4622391}.Release|x64.Build.0 = Release|x64
++ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Debug|ARM64.Build.0 = Debug|ARM64
+ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Debug|Win32.Build.0 = Debug|Win32
+ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Debug|x64.ActiveCfg = Debug|x64
+ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Debug|x64.Build.0 = Debug|x64
++ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Release|ARM64.ActiveCfg = Release|ARM64
++ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Release|ARM64.Build.0 = Release|ARM64
+ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Release|Win32.ActiveCfg = Release|Win32
+ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Release|Win32.Build.0 = Release|Win32
+ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Release|x64.ActiveCfg = Release|x64
+ {6384E1A6-151A-3FAC-A932-26D0D9119020}.Release|x64.Build.0 = Release|x64
++ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Debug|ARM64.Build.0 = Debug|ARM64
+ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Debug|Win32.Build.0 = Debug|Win32
+ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Debug|x64.ActiveCfg = Debug|x64
+ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Debug|x64.Build.0 = Debug|x64
++ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Release|ARM64.ActiveCfg = Release|ARM64
++ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Release|ARM64.Build.0 = Release|ARM64
+ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Release|Win32.ActiveCfg = Release|Win32
+ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Release|Win32.Build.0 = Release|Win32
+ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Release|x64.ActiveCfg = Release|x64
+ {D649BB77-A3D2-7879-0DE9-0407D1D07A07}.Release|x64.Build.0 = Release|x64
++ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Debug|ARM64.Build.0 = Debug|ARM64
+ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Debug|Win32.Build.0 = Debug|Win32
+ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Debug|x64.ActiveCfg = Debug|x64
+ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Debug|x64.Build.0 = Debug|x64
++ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Release|ARM64.ActiveCfg = Release|ARM64
++ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Release|ARM64.Build.0 = Release|ARM64
+ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Release|Win32.ActiveCfg = Release|Win32
+ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Release|Win32.Build.0 = Release|Win32
+ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Release|x64.ActiveCfg = Release|x64
+ {D72015D0-0E47-B5D8-1832-15289D2D14D7}.Release|x64.Build.0 = Release|x64
++ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Debug|ARM64.Build.0 = Debug|ARM64
+ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Debug|Win32.Build.0 = Debug|Win32
+ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Debug|x64.ActiveCfg = Debug|x64
+ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Debug|x64.Build.0 = Debug|x64
++ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Release|ARM64.ActiveCfg = Release|ARM64
++ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Release|ARM64.Build.0 = Release|ARM64
+ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Release|Win32.ActiveCfg = Release|Win32
+ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Release|Win32.Build.0 = Release|Win32
+ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Release|x64.ActiveCfg = Release|x64
+ {AECB4999-B617-40C8-BC32-6FCFD810F462}.Release|x64.Build.0 = Release|x64
++ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Debug|ARM64.Build.0 = Debug|ARM64
+ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Debug|Win32.Build.0 = Debug|Win32
+ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Debug|x64.ActiveCfg = Debug|x64
+ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Debug|x64.Build.0 = Debug|x64
++ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Release|ARM64.ActiveCfg = Release|ARM64
++ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Release|ARM64.Build.0 = Release|ARM64
+ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Release|Win32.ActiveCfg = Release|Win32
+ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Release|Win32.Build.0 = Release|Win32
+ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Release|x64.ActiveCfg = Release|x64
+ {BDF5959C-CB5E-4A41-8906-D9C0E7E437EF}.Release|x64.Build.0 = Release|x64
++ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Debug|ARM64.Build.0 = Debug|ARM64
+ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Debug|Win32.Build.0 = Debug|Win32
+ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Debug|x64.ActiveCfg = Debug|x64
+ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Debug|x64.Build.0 = Debug|x64
++ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Release|ARM64.ActiveCfg = Release|ARM64
++ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Release|ARM64.Build.0 = Release|ARM64
+ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Release|Win32.ActiveCfg = Release|Win32
+ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Release|Win32.Build.0 = Release|Win32
+ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Release|x64.ActiveCfg = Release|x64
+ {4F1C9BE1-7C8C-4E84-B0A4-3AE06E970920}.Release|x64.Build.0 = Release|x64
++ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Debug|ARM64.Build.0 = Debug|ARM64
+ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Debug|Win32.ActiveCfg = Debug|Win32
+ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Debug|Win32.Build.0 = Debug|Win32
+ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Debug|x64.ActiveCfg = Debug|x64
+ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Debug|x64.Build.0 = Debug|x64
++ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Release|ARM64.ActiveCfg = Release|ARM64
++ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Release|ARM64.Build.0 = Release|ARM64
+ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Release|Win32.ActiveCfg = Release|Win32
+ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Release|Win32.Build.0 = Release|Win32
+ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Release|x64.ActiveCfg = Release|x64
+ {89264F07-C21B-4C98-A76F-2635D40CFF96}.Release|x64.Build.0 = Release|x64
++ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Debug|ARM64.Build.0 = Debug|ARM64
+ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Debug|Win32.Build.0 = Debug|Win32
+ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Debug|x64.ActiveCfg = Debug|x64
+ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Debug|x64.Build.0 = Debug|x64
++ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Release|ARM64.ActiveCfg = Release|ARM64
++ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Release|ARM64.Build.0 = Release|ARM64
+ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Release|Win32.ActiveCfg = Release|Win32
+ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Release|Win32.Build.0 = Release|Win32
+ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Release|x64.ActiveCfg = Release|x64
+ {0A440012-109E-4CFF-AFD7-BF6D59628D87}.Release|x64.Build.0 = Release|x64
++ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Debug|ARM64.Build.0 = Debug|ARM64
+ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Debug|Win32.Build.0 = Debug|Win32
+ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Debug|x64.ActiveCfg = Debug|x64
+ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Debug|x64.Build.0 = Debug|x64
++ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Release|ARM64.ActiveCfg = Release|ARM64
++ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Release|ARM64.Build.0 = Release|ARM64
+ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Release|Win32.ActiveCfg = Release|Win32
+ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Release|Win32.Build.0 = Release|Win32
+ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Release|x64.ActiveCfg = Release|x64
+ {1B635A04-9265-4274-9B57-C5F1C4027A4E}.Release|x64.Build.0 = Release|x64
++ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Debug|ARM64.Build.0 = Debug|ARM64
+ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Debug|Win32.Build.0 = Debug|Win32
+ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Debug|x64.ActiveCfg = Debug|x64
+ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Debug|x64.Build.0 = Debug|x64
++ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Release|ARM64.ActiveCfg = Release|ARM64
++ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Release|ARM64.Build.0 = Release|ARM64
+ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Release|Win32.ActiveCfg = Release|Win32
+ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Release|Win32.Build.0 = Release|Win32
+ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Release|x64.ActiveCfg = Release|x64
+ {9C50623C-7A82-424E-8DD4-E03D53F95B9B}.Release|x64.Build.0 = Release|x64
++ {31832E59-29F0-44C7-A19E-E322B1142425}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {31832E59-29F0-44C7-A19E-E322B1142425}.Debug|ARM64.Build.0 = Debug|ARM64
+ {31832E59-29F0-44C7-A19E-E322B1142425}.Debug|Win32.ActiveCfg = Debug|Win32
+ {31832E59-29F0-44C7-A19E-E322B1142425}.Debug|Win32.Build.0 = Debug|Win32
+ {31832E59-29F0-44C7-A19E-E322B1142425}.Debug|x64.ActiveCfg = Debug|x64
+ {31832E59-29F0-44C7-A19E-E322B1142425}.Debug|x64.Build.0 = Debug|x64
++ {31832E59-29F0-44C7-A19E-E322B1142425}.Release|ARM64.ActiveCfg = Release|ARM64
++ {31832E59-29F0-44C7-A19E-E322B1142425}.Release|ARM64.Build.0 = Release|ARM64
+ {31832E59-29F0-44C7-A19E-E322B1142425}.Release|Win32.ActiveCfg = Release|Win32
+ {31832E59-29F0-44C7-A19E-E322B1142425}.Release|Win32.Build.0 = Release|Win32
+ {31832E59-29F0-44C7-A19E-E322B1142425}.Release|x64.ActiveCfg = Release|x64
+ {31832E59-29F0-44C7-A19E-E322B1142425}.Release|x64.Build.0 = Release|x64
++ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Debug|ARM64.Build.0 = Debug|ARM64
+ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Debug|Win32.Build.0 = Debug|Win32
+ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Debug|x64.ActiveCfg = Debug|x64
+ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Debug|x64.Build.0 = Debug|x64
++ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Release|ARM64.ActiveCfg = Release|ARM64
++ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Release|ARM64.Build.0 = Release|ARM64
+ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Release|Win32.ActiveCfg = Release|Win32
+ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Release|Win32.Build.0 = Release|Win32
+ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Release|x64.ActiveCfg = Release|x64
+ {541BB0AF-2A9D-4254-AEA2-C4AF64B072AE}.Release|x64.Build.0 = Release|x64
++ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Debug|ARM64.Build.0 = Debug|ARM64
+ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Debug|Win32.ActiveCfg = Debug|Win32
+ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Debug|Win32.Build.0 = Debug|Win32
+ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Debug|x64.ActiveCfg = Debug|x64
+ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Debug|x64.Build.0 = Debug|x64
++ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Release|ARM64.ActiveCfg = Release|ARM64
++ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Release|ARM64.Build.0 = Release|ARM64
+ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Release|Win32.ActiveCfg = Release|Win32
+ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Release|Win32.Build.0 = Release|Win32
+ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Release|x64.ActiveCfg = Release|x64
+ {94535CF0-A2CB-4A1B-88F6-B9883D209B81}.Release|x64.Build.0 = Release|x64
++ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Debug|ARM64.Build.0 = Debug|ARM64
+ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Debug|Win32.ActiveCfg = Debug|Win32
+ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Debug|Win32.Build.0 = Debug|Win32
+ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Debug|x64.ActiveCfg = Debug|x64
+ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Debug|x64.Build.0 = Debug|x64
++ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Release|ARM64.ActiveCfg = Release|ARM64
++ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Release|ARM64.Build.0 = Release|ARM64
+ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Release|Win32.ActiveCfg = Release|Win32
+ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Release|Win32.Build.0 = Release|Win32
+ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Release|x64.ActiveCfg = Release|x64
+ {324BFA7D-8AF3-4F2B-8B3E-1D2E3EE2BB19}.Release|x64.Build.0 = Release|x64
++ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Debug|ARM64.Build.0 = Debug|ARM64
+ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Debug|Win32.ActiveCfg = Debug|Win32
+ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Debug|Win32.Build.0 = Debug|Win32
+ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Debug|x64.ActiveCfg = Debug|x64
+ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Debug|x64.Build.0 = Debug|x64
++ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Release|ARM64.ActiveCfg = Release|ARM64
++ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Release|ARM64.Build.0 = Release|ARM64
+ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Release|Win32.ActiveCfg = Release|Win32
+ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Release|Win32.Build.0 = Release|Win32
+ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Release|x64.ActiveCfg = Release|x64
+ {44A27326-22B1-4838-85F2-0748CB9F5FB5}.Release|x64.Build.0 = Release|x64
++ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Debug|ARM64.Build.0 = Debug|ARM64
+ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Debug|Win32.Build.0 = Debug|Win32
+ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Debug|x64.ActiveCfg = Debug|x64
+ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Debug|x64.Build.0 = Debug|x64
++ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Release|ARM64.ActiveCfg = Release|ARM64
++ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Release|ARM64.Build.0 = Release|ARM64
+ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Release|Win32.ActiveCfg = Release|Win32
+ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Release|Win32.Build.0 = Release|Win32
+ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Release|x64.ActiveCfg = Release|x64
+ {1BA5CA1A-2CFD-44B6-8FEF-34A20D4E533C}.Release|x64.Build.0 = Release|x64
++ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Debug|ARM64.Build.0 = Debug|ARM64
+ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Debug|Win32.Build.0 = Debug|Win32
+ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Debug|x64.ActiveCfg = Debug|x64
+ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Debug|x64.Build.0 = Debug|x64
++ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Release|ARM64.ActiveCfg = Release|ARM64
++ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Release|ARM64.Build.0 = Release|ARM64
+ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Release|Win32.ActiveCfg = Release|Win32
+ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Release|Win32.Build.0 = Release|Win32
+ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Release|x64.ActiveCfg = Release|x64
+ {F937F792-25ED-4DE4-AA9F-104163DB24DF}.Release|x64.Build.0 = Release|x64
++ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Debug|ARM64.Build.0 = Debug|ARM64
+ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Debug|Win32.ActiveCfg = Debug|Win32
+ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Debug|Win32.Build.0 = Debug|Win32
+ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Debug|x64.ActiveCfg = Debug|x64
+ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Debug|x64.Build.0 = Debug|x64
++ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Release|ARM64.ActiveCfg = Release|ARM64
++ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Release|ARM64.Build.0 = Release|ARM64
+ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Release|Win32.ActiveCfg = Release|Win32
+ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Release|Win32.Build.0 = Release|Win32
+ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Release|x64.ActiveCfg = Release|x64
+ {37FA0D6B-E032-4E01-A2EE-2BAF59A551AC}.Release|x64.Build.0 = Release|x64
++ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Debug|ARM64.Build.0 = Debug|ARM64
+ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Debug|Win32.Build.0 = Debug|Win32
+ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Debug|x64.ActiveCfg = Debug|x64
+ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Debug|x64.Build.0 = Debug|x64
++ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Release|ARM64.ActiveCfg = Release|ARM64
++ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Release|ARM64.Build.0 = Release|ARM64
+ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Release|Win32.ActiveCfg = Release|Win32
+ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Release|Win32.Build.0 = Release|Win32
+ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Release|x64.ActiveCfg = Release|x64
+ {44CE44BF-BC91-4564-B890-0EA6677EF3B3}.Release|x64.Build.0 = Release|x64
++ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Debug|ARM64.Build.0 = Debug|ARM64
+ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Debug|Win32.ActiveCfg = Debug|Win32
+ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Debug|Win32.Build.0 = Debug|Win32
+ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Debug|x64.ActiveCfg = Debug|x64
+ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Debug|x64.Build.0 = Debug|x64
++ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Release|ARM64.ActiveCfg = Release|ARM64
++ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Release|ARM64.Build.0 = Release|ARM64
+ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Release|Win32.ActiveCfg = Release|Win32
+ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Release|Win32.Build.0 = Release|Win32
+ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Release|x64.ActiveCfg = Release|x64
+ {52CE9EB2-E62B-4126-A4F8-D4F68ADD9EC1}.Release|x64.Build.0 = Release|x64
++ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Debug|ARM64.ActiveCfg = Debug|ARM64
++ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Debug|ARM64.Build.0 = Debug|ARM64
+ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Debug|Win32.ActiveCfg = Debug|Win32
+ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Debug|Win32.Build.0 = Debug|Win32
+ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Debug|x64.ActiveCfg = Debug|x64
+ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Debug|x64.Build.0 = Debug|x64
++ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Release|ARM64.ActiveCfg = Release|ARM64
++ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Release|ARM64.Build.0 = Release|ARM64
+ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Release|Win32.ActiveCfg = Release|Win32
+ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Release|Win32.Build.0 = Release|Win32
+ {66E288D7-106F-42B2-8BB9-64ADFCAFE283}.Release|x64.ActiveCfg = Release|x64
+diff --git a/build.vs19/lib_mpfr/lib_mpfr.vcxproj b/build.vs19/lib_mpfr/lib_mpfr.vcxproj
+index 6fb09bdc..584acf4a 100644
+--- a/build.vs19/lib_mpfr/lib_mpfr.vcxproj
++++ b/build.vs19/lib_mpfr/lib_mpfr.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -27,19 +35,27 @@
+
+
+ StaticLibrary
+- v142
++ v143
++
++
++ StaticLibrary
++ v143
+
+
+ StaticLibrary
+- v142
++ v143
++
++
++ StaticLibrary
++ v143
+
+
+ StaticLibrary
+- v142
++ v143
+
+
+ StaticLibrary
+- v142
++ v143
+
+
+
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,21 +82,55 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)..\lib\$(Platform)\$(Configuration)\
++ $(SolutionDir)..\lib\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)..\lib\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)..\lib\$(Platform)\$(Configuration)\
++ $(SolutionDir)..\lib\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)..\lib\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ mpfr
+ mpfr
+ mpfr
++ mpfr
+ mpfr
++ mpfr
+
+
+
+ ..\out_copy_rename.bat ..\..\src\mpfr.h ..\..\lib\$(IntDir) mpfr.h
++..\out_copy_rename.bat ..\..\src\mparam_h.in ..\..\ mparam.h
++
++
++
++
++
++
++ Disabled
++ ..\;..\..\src\;..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_WIN32;HAVE_CONFIG_H;_DEBUG;_LIB;_GMP_IEEE_FLOATS;_CRT_SECURE_NO_WARNINGS;MPFR_HAVE_GMP_IMPL
++ EnableFastChecks
++ MultiThreadedDebug
++
++
++ $(TargetDir)$(TargetName).pdb
++ true
++
++
++ ..\..\..\mpir\lib\$(IntDir)mpir.lib;%(AdditionalDependencies)
++
++
++
++
++
++
++
++
++ ..\out_copy_rename.bat ..\..\src\mpfr.h ..\..\lib\$(IntDir) mpfr.h
+ ..\out_copy_rename.bat ..\..\src\mparam_h.in ..\..\ mparam.h
+
+
+@@ -135,6 +191,34 @@
+
+
+ ..\out_copy_rename.bat ..\..\src\mpfr.h ..\..\lib\$(IntDir) mpfr.h
++..\out_copy_rename.bat ..\..\src\mparam_h.in ..\..\ mparam.h
++
++
++
++
++
++
++ Full
++ ..\;..\..\src\;..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_WIN32;HAVE_CONFIG_H;NDEBUG;_LIB;_GMP_IEEE_FLOATS;_CRT_SECURE_NO_WARNINGS;MPFR_HAVE_GMP_IMPL
++ MultiThreaded
++ false
++
++
++ $(TargetDir)$(TargetName).pdb
++ true
++
++
++ ..\..\..\mpir\lib\$(IntDir)mpir.lib;%(AdditionalDependencies)
++
++
++
++
++
++
++
++
++ ..\out_copy_rename.bat ..\..\src\mpfr.h ..\..\lib\$(IntDir) mpfr.h
+ ..\out_copy_rename.bat ..\..\src\mparam_h.in ..\..\ mparam.h
+
+
+@@ -312,7 +396,9 @@
+
+
+ true
++ true
+ true
++ true
+ true
+ true
+
+@@ -331,7 +417,9 @@
+
+
+ true
++ true
+ true
++ true
+ true
+ true
+
+@@ -370,7 +458,9 @@
+
+
+ true
++ true
+ true
++ true
+ true
+ true
+
+diff --git a/build.vs19/lib_mpfr_tests/lib_tests/lib_tests.vcxproj b/build.vs19/lib_mpfr_tests/lib_tests/lib_tests.vcxproj
+index 1df4a01c..fa416169 100644
+--- a/build.vs19/lib_mpfr_tests/lib_tests/lib_tests.vcxproj
++++ b/build.vs19/lib_mpfr_tests/lib_tests/lib_tests.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ StaticLibrary
+ v142
+
++
++ StaticLibrary
++ v142
++
+
+ StaticLibrary
+ v142
+
++
++ StaticLibrary
++ v142
++
+
+ StaticLibrary
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -85,6 +111,23 @@
+ MachineX86
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;HAVE_CONFIG_H;_DEBUG;_LIB;MPFR_HAVE_GMP_IMPL
++ EnableFastChecks
++
++
++ Level3
++ MultiThreadedDebug
++ true
++
++
++
++ MachineX86
++
++
+
+
+ X64
+@@ -119,6 +162,23 @@
+ MachineX86
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;HAVE_CONFIG_H;NDEBUG;_LIB;MPFR_HAVE_GMP_IMPL
++
++
++ Level3
++ ProgramDatabase
++ MultiThreaded
++ true
++
++
++
++ MachineX86
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/mpf_compat/mpf_compat.vcxproj b/build.vs19/lib_mpfr_tests/mpf_compat/mpf_compat.vcxproj
+index 044eae06..8e927cb5 100644
+--- a/build.vs19/lib_mpfr_tests/mpf_compat/mpf_compat.vcxproj
++++ b/build.vs19/lib_mpfr_tests/mpf_compat/mpf_compat.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/mpfr_compat/mpfr_compat.vcxproj b/build.vs19/lib_mpfr_tests/mpfr_compat/mpfr_compat.vcxproj
+index dd3cc537..96e874a8 100644
+--- a/build.vs19/lib_mpfr_tests/mpfr_compat/mpfr_compat.vcxproj
++++ b/build.vs19/lib_mpfr_tests/mpfr_compat/mpfr_compat.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -132,6 +177,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/reuse/reuse.vcxproj b/build.vs19/lib_mpfr_tests/reuse/reuse.vcxproj
+index 922bd519..3794683d 100644
+--- a/build.vs19/lib_mpfr_tests/reuse/reuse.vcxproj
++++ b/build.vs19/lib_mpfr_tests/reuse/reuse.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tabort_defalloc1/tabort_defalloc1.vcxproj b/build.vs19/lib_mpfr_tests/tabort_defalloc1/tabort_defalloc1.vcxproj
+index ad66dcd4..38fa2d9b 100644
+--- a/build.vs19/lib_mpfr_tests/tabort_defalloc1/tabort_defalloc1.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tabort_defalloc1/tabort_defalloc1.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tabort_defalloc2/tabort_defalloc2.vcxproj b/build.vs19/lib_mpfr_tests/tabort_defalloc2/tabort_defalloc2.vcxproj
+index e1e65d16..ed586676 100644
+--- a/build.vs19/lib_mpfr_tests/tabort_defalloc2/tabort_defalloc2.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tabort_defalloc2/tabort_defalloc2.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tabort_prec_max/tabort_prec_max.vcxproj b/build.vs19/lib_mpfr_tests/tabort_prec_max/tabort_prec_max.vcxproj
+index 47dc575c..6b5bf6bb 100644
+--- a/build.vs19/lib_mpfr_tests/tabort_prec_max/tabort_prec_max.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tabort_prec_max/tabort_prec_max.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tabs/tabs.vcxproj b/build.vs19/lib_mpfr_tests/tabs/tabs.vcxproj
+index 4a6c9c57..b332838a 100644
+--- a/build.vs19/lib_mpfr_tests/tabs/tabs.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tabs/tabs.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tacos/tacos.vcxproj b/build.vs19/lib_mpfr_tests/tacos/tacos.vcxproj
+index d3436267..56d2087d 100644
+--- a/build.vs19/lib_mpfr_tests/tacos/tacos.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tacos/tacos.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tacosh/tacosh.vcxproj b/build.vs19/lib_mpfr_tests/tacosh/tacosh.vcxproj
+index 295f982e..4b64914f 100644
+--- a/build.vs19/lib_mpfr_tests/tacosh/tacosh.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tacosh/tacosh.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tadd/tadd.vcxproj b/build.vs19/lib_mpfr_tests/tadd/tadd.vcxproj
+index c254f526..780ce818 100644
+--- a/build.vs19/lib_mpfr_tests/tadd/tadd.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tadd/tadd.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tadd1sp/tadd1sp.vcxproj b/build.vs19/lib_mpfr_tests/tadd1sp/tadd1sp.vcxproj
+index 739ea71e..3da0b2e0 100644
+--- a/build.vs19/lib_mpfr_tests/tadd1sp/tadd1sp.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tadd1sp/tadd1sp.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tadd_d/tadd_d.vcxproj b/build.vs19/lib_mpfr_tests/tadd_d/tadd_d.vcxproj
+index 3d9cc010..da98318d 100644
+--- a/build.vs19/lib_mpfr_tests/tadd_d/tadd_d.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tadd_d/tadd_d.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tadd_ui/tadd_ui.vcxproj b/build.vs19/lib_mpfr_tests/tadd_ui/tadd_ui.vcxproj
+index 97f96e8d..98267ebb 100644
+--- a/build.vs19/lib_mpfr_tests/tadd_ui/tadd_ui.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tadd_ui/tadd_ui.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tagm/tagm.vcxproj b/build.vs19/lib_mpfr_tests/tagm/tagm.vcxproj
+index c15d19fa..1b58594b 100644
+--- a/build.vs19/lib_mpfr_tests/tagm/tagm.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tagm/tagm.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tai/tai.vcxproj b/build.vs19/lib_mpfr_tests/tai/tai.vcxproj
+index 6c19a221..570f1deb 100644
+--- a/build.vs19/lib_mpfr_tests/tai/tai.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tai/tai.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/talloc/talloc.vcxproj b/build.vs19/lib_mpfr_tests/talloc/talloc.vcxproj
+index 6e321198..2cad9dd7 100644
+--- a/build.vs19/lib_mpfr_tests/talloc/talloc.vcxproj
++++ b/build.vs19/lib_mpfr_tests/talloc/talloc.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tasin/tasin.vcxproj b/build.vs19/lib_mpfr_tests/tasin/tasin.vcxproj
+index 8527e32f..82c21bfd 100644
+--- a/build.vs19/lib_mpfr_tests/tasin/tasin.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tasin/tasin.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tasinh/tasinh.vcxproj b/build.vs19/lib_mpfr_tests/tasinh/tasinh.vcxproj
+index 3504fde7..2eaaace4 100644
+--- a/build.vs19/lib_mpfr_tests/tasinh/tasinh.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tasinh/tasinh.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tassert/tassert.vcxproj b/build.vs19/lib_mpfr_tests/tassert/tassert.vcxproj
+index 5d29eb11..96835b6c 100644
+--- a/build.vs19/lib_mpfr_tests/tassert/tassert.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tassert/tassert.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tatan/tatan.vcxproj b/build.vs19/lib_mpfr_tests/tatan/tatan.vcxproj
+index 63bed877..79eabfbe 100644
+--- a/build.vs19/lib_mpfr_tests/tatan/tatan.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tatan/tatan.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tatanh/tatanh.vcxproj b/build.vs19/lib_mpfr_tests/tatanh/tatanh.vcxproj
+index 49507185..ef88a2f2 100644
+--- a/build.vs19/lib_mpfr_tests/tatanh/tatanh.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tatanh/tatanh.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/taway/taway.vcxproj b/build.vs19/lib_mpfr_tests/taway/taway.vcxproj
+index 85d5459b..cf0e60aa 100644
+--- a/build.vs19/lib_mpfr_tests/taway/taway.vcxproj
++++ b/build.vs19/lib_mpfr_tests/taway/taway.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tbeta/tbeta.vcxproj b/build.vs19/lib_mpfr_tests/tbeta/tbeta.vcxproj
+index 0ee0e856..4e58d7bc 100644
+--- a/build.vs19/lib_mpfr_tests/tbeta/tbeta.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tbeta/tbeta.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,15 +82,20 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+
++
+
+
+
+@@ -91,6 +118,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -134,6 +180,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tbuildopt/tbuildopt.vcxproj b/build.vs19/lib_mpfr_tests/tbuildopt/tbuildopt.vcxproj
+index d637aa2b..4e75c919 100644
+--- a/build.vs19/lib_mpfr_tests/tbuildopt/tbuildopt.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tbuildopt/tbuildopt.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcan_round/tcan_round.vcxproj b/build.vs19/lib_mpfr_tests/tcan_round/tcan_round.vcxproj
+index 9afc1d7d..e47b4382 100644
+--- a/build.vs19/lib_mpfr_tests/tcan_round/tcan_round.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcan_round/tcan_round.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcbrt/tcbrt.vcxproj b/build.vs19/lib_mpfr_tests/tcbrt/tcbrt.vcxproj
+index 99d75d55..3ffccbd9 100644
+--- a/build.vs19/lib_mpfr_tests/tcbrt/tcbrt.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcbrt/tcbrt.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcheck/tcheck.vcxproj b/build.vs19/lib_mpfr_tests/tcheck/tcheck.vcxproj
+index a6b8ad85..503bc912 100644
+--- a/build.vs19/lib_mpfr_tests/tcheck/tcheck.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcheck/tcheck.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcmp/tcmp.vcxproj b/build.vs19/lib_mpfr_tests/tcmp/tcmp.vcxproj
+index 08a100f2..9ae72794 100644
+--- a/build.vs19/lib_mpfr_tests/tcmp/tcmp.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcmp/tcmp.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcmp2/tcmp2.vcxproj b/build.vs19/lib_mpfr_tests/tcmp2/tcmp2.vcxproj
+index 81ca4cdf..4976721f 100644
+--- a/build.vs19/lib_mpfr_tests/tcmp2/tcmp2.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcmp2/tcmp2.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcmp_d/tcmp_d.vcxproj b/build.vs19/lib_mpfr_tests/tcmp_d/tcmp_d.vcxproj
+index 6f28fc37..42b54dff 100644
+--- a/build.vs19/lib_mpfr_tests/tcmp_d/tcmp_d.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcmp_d/tcmp_d.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcmp_ld/tcmp_ld.vcxproj b/build.vs19/lib_mpfr_tests/tcmp_ld/tcmp_ld.vcxproj
+index 2545b85e..36fa53de 100644
+--- a/build.vs19/lib_mpfr_tests/tcmp_ld/tcmp_ld.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcmp_ld/tcmp_ld.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcmp_ui/tcmp_ui.vcxproj b/build.vs19/lib_mpfr_tests/tcmp_ui/tcmp_ui.vcxproj
+index e7347613..52aa391a 100644
+--- a/build.vs19/lib_mpfr_tests/tcmp_ui/tcmp_ui.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcmp_ui/tcmp_ui.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcmpabs/tcmpabs.vcxproj b/build.vs19/lib_mpfr_tests/tcmpabs/tcmpabs.vcxproj
+index 5cd00dba..35ca20cc 100644
+--- a/build.vs19/lib_mpfr_tests/tcmpabs/tcmpabs.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcmpabs/tcmpabs.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcomparisons/tcomparisons.vcxproj b/build.vs19/lib_mpfr_tests/tcomparisons/tcomparisons.vcxproj
+index 8f669540..9719a0c0 100644
+--- a/build.vs19/lib_mpfr_tests/tcomparisons/tcomparisons.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcomparisons/tcomparisons.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tconst_catalan/tconst_catalan.vcxproj b/build.vs19/lib_mpfr_tests/tconst_catalan/tconst_catalan.vcxproj
+index 944da3e1..56b0f559 100644
+--- a/build.vs19/lib_mpfr_tests/tconst_catalan/tconst_catalan.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tconst_catalan/tconst_catalan.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tconst_euler/tconst_euler.vcxproj b/build.vs19/lib_mpfr_tests/tconst_euler/tconst_euler.vcxproj
+index 51b7ffcf..c23185de 100644
+--- a/build.vs19/lib_mpfr_tests/tconst_euler/tconst_euler.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tconst_euler/tconst_euler.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tconst_log2/tconst_log2.vcxproj b/build.vs19/lib_mpfr_tests/tconst_log2/tconst_log2.vcxproj
+index f0e19243..2b6346c7 100644
+--- a/build.vs19/lib_mpfr_tests/tconst_log2/tconst_log2.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tconst_log2/tconst_log2.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tconst_pi/tconst_pi.vcxproj b/build.vs19/lib_mpfr_tests/tconst_pi/tconst_pi.vcxproj
+index 73ac73c6..9a72dcd6 100644
+--- a/build.vs19/lib_mpfr_tests/tconst_pi/tconst_pi.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tconst_pi/tconst_pi.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcopysign/tcopysign.vcxproj b/build.vs19/lib_mpfr_tests/tcopysign/tcopysign.vcxproj
+index bc9341ed..9bc12521 100644
+--- a/build.vs19/lib_mpfr_tests/tcopysign/tcopysign.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcopysign/tcopysign.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcos/tcos.vcxproj b/build.vs19/lib_mpfr_tests/tcos/tcos.vcxproj
+index 7d2a52b0..31d14582 100644
+--- a/build.vs19/lib_mpfr_tests/tcos/tcos.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcos/tcos.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcosh/tcosh.vcxproj b/build.vs19/lib_mpfr_tests/tcosh/tcosh.vcxproj
+index cbabd95b..d75f7d06 100644
+--- a/build.vs19/lib_mpfr_tests/tcosh/tcosh.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcosh/tcosh.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcot/tcot.vcxproj b/build.vs19/lib_mpfr_tests/tcot/tcot.vcxproj
+index 08a27985..4d0b291c 100644
+--- a/build.vs19/lib_mpfr_tests/tcot/tcot.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcot/tcot.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcoth/tcoth.vcxproj b/build.vs19/lib_mpfr_tests/tcoth/tcoth.vcxproj
+index 741db798..90a6f5ff 100644
+--- a/build.vs19/lib_mpfr_tests/tcoth/tcoth.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcoth/tcoth.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcsc/tcsc.vcxproj b/build.vs19/lib_mpfr_tests/tcsc/tcsc.vcxproj
+index ef5e85cb..51e81e8d 100644
+--- a/build.vs19/lib_mpfr_tests/tcsc/tcsc.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcsc/tcsc.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tcsch/tcsch.vcxproj b/build.vs19/lib_mpfr_tests/tcsch/tcsch.vcxproj
+index 1238bc9d..c45dd81e 100644
+--- a/build.vs19/lib_mpfr_tests/tcsch/tcsch.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tcsch/tcsch.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/td_div/td_div.vcxproj b/build.vs19/lib_mpfr_tests/td_div/td_div.vcxproj
+index 98997599..90fcd188 100644
+--- a/build.vs19/lib_mpfr_tests/td_div/td_div.vcxproj
++++ b/build.vs19/lib_mpfr_tests/td_div/td_div.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/td_sub/td_sub.vcxproj b/build.vs19/lib_mpfr_tests/td_sub/td_sub.vcxproj
+index dd6b6f92..e8e70ba7 100644
+--- a/build.vs19/lib_mpfr_tests/td_sub/td_sub.vcxproj
++++ b/build.vs19/lib_mpfr_tests/td_sub/td_sub.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tdigamma/tdigamma.vcxproj b/build.vs19/lib_mpfr_tests/tdigamma/tdigamma.vcxproj
+index d2091fe3..3403b69e 100644
+--- a/build.vs19/lib_mpfr_tests/tdigamma/tdigamma.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tdigamma/tdigamma.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tdim/tdim.vcxproj b/build.vs19/lib_mpfr_tests/tdim/tdim.vcxproj
+index ae13962c..d2840c9c 100644
+--- a/build.vs19/lib_mpfr_tests/tdim/tdim.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tdim/tdim.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tdiv/tdiv.vcxproj b/build.vs19/lib_mpfr_tests/tdiv/tdiv.vcxproj
+index 4029ff65..fc3a3284 100644
+--- a/build.vs19/lib_mpfr_tests/tdiv/tdiv.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tdiv/tdiv.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tdiv_d/tdiv_d.vcxproj b/build.vs19/lib_mpfr_tests/tdiv_d/tdiv_d.vcxproj
+index b17386a0..133816ad 100644
+--- a/build.vs19/lib_mpfr_tests/tdiv_d/tdiv_d.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tdiv_d/tdiv_d.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tdiv_ui/tdiv_ui.vcxproj b/build.vs19/lib_mpfr_tests/tdiv_ui/tdiv_ui.vcxproj
+index e19231b2..e6a37332 100644
+--- a/build.vs19/lib_mpfr_tests/tdiv_ui/tdiv_ui.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tdiv_ui/tdiv_ui.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tdot/tdot.vcxproj b/build.vs19/lib_mpfr_tests/tdot/tdot.vcxproj
+index cda09602..f2d09002 100644
+--- a/build.vs19/lib_mpfr_tests/tdot/tdot.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tdot/tdot.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/teint/teint.vcxproj b/build.vs19/lib_mpfr_tests/teint/teint.vcxproj
+index 3e211aaf..4bf78e95 100644
+--- a/build.vs19/lib_mpfr_tests/teint/teint.vcxproj
++++ b/build.vs19/lib_mpfr_tests/teint/teint.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/teq/teq.vcxproj b/build.vs19/lib_mpfr_tests/teq/teq.vcxproj
+index d4d132a0..a84222c5 100644
+--- a/build.vs19/lib_mpfr_tests/teq/teq.vcxproj
++++ b/build.vs19/lib_mpfr_tests/teq/teq.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/terandom/terandom.vcxproj b/build.vs19/lib_mpfr_tests/terandom/terandom.vcxproj
+index 87d74358..6199749e 100644
+--- a/build.vs19/lib_mpfr_tests/terandom/terandom.vcxproj
++++ b/build.vs19/lib_mpfr_tests/terandom/terandom.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/terandom_chisq/terandom_chisq.vcxproj b/build.vs19/lib_mpfr_tests/terandom_chisq/terandom_chisq.vcxproj
+index 3b92a130..21ea4480 100644
+--- a/build.vs19/lib_mpfr_tests/terandom_chisq/terandom_chisq.vcxproj
++++ b/build.vs19/lib_mpfr_tests/terandom_chisq/terandom_chisq.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/terf/terf.vcxproj b/build.vs19/lib_mpfr_tests/terf/terf.vcxproj
+index 9d81665e..8b6ca199 100644
+--- a/build.vs19/lib_mpfr_tests/terf/terf.vcxproj
++++ b/build.vs19/lib_mpfr_tests/terf/terf.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/texceptions/texceptions.vcxproj b/build.vs19/lib_mpfr_tests/texceptions/texceptions.vcxproj
+index 35091ba8..84a5c813 100644
+--- a/build.vs19/lib_mpfr_tests/texceptions/texceptions.vcxproj
++++ b/build.vs19/lib_mpfr_tests/texceptions/texceptions.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/texp/texp.vcxproj b/build.vs19/lib_mpfr_tests/texp/texp.vcxproj
+index fe32e215..036a3062 100644
+--- a/build.vs19/lib_mpfr_tests/texp/texp.vcxproj
++++ b/build.vs19/lib_mpfr_tests/texp/texp.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/texp10/texp10.vcxproj b/build.vs19/lib_mpfr_tests/texp10/texp10.vcxproj
+index ec322bfe..c506d7f6 100644
+--- a/build.vs19/lib_mpfr_tests/texp10/texp10.vcxproj
++++ b/build.vs19/lib_mpfr_tests/texp10/texp10.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/texp2/texp2.vcxproj b/build.vs19/lib_mpfr_tests/texp2/texp2.vcxproj
+index 06b71fa5..68202cab 100644
+--- a/build.vs19/lib_mpfr_tests/texp2/texp2.vcxproj
++++ b/build.vs19/lib_mpfr_tests/texp2/texp2.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/texpm1/texpm1.vcxproj b/build.vs19/lib_mpfr_tests/texpm1/texpm1.vcxproj
+index 82e27bf3..82c11ab6 100644
+--- a/build.vs19/lib_mpfr_tests/texpm1/texpm1.vcxproj
++++ b/build.vs19/lib_mpfr_tests/texpm1/texpm1.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tfactorial/tfactorial.vcxproj b/build.vs19/lib_mpfr_tests/tfactorial/tfactorial.vcxproj
+index 3b19fd78..c2e346d8 100644
+--- a/build.vs19/lib_mpfr_tests/tfactorial/tfactorial.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tfactorial/tfactorial.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tfits/tfits.vcxproj b/build.vs19/lib_mpfr_tests/tfits/tfits.vcxproj
+index 110c88c1..d7a36c49 100644
+--- a/build.vs19/lib_mpfr_tests/tfits/tfits.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tfits/tfits.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tfma/tfma.vcxproj b/build.vs19/lib_mpfr_tests/tfma/tfma.vcxproj
+index 7e727b6b..7aa91f21 100644
+--- a/build.vs19/lib_mpfr_tests/tfma/tfma.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tfma/tfma.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tfmma/tfmma.vcxproj b/build.vs19/lib_mpfr_tests/tfmma/tfmma.vcxproj
+index cffb8b8e..61d1479c 100644
+--- a/build.vs19/lib_mpfr_tests/tfmma/tfmma.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tfmma/tfmma.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tfmod/tfmod.vcxproj b/build.vs19/lib_mpfr_tests/tfmod/tfmod.vcxproj
+index 9cee910c..06e6eaf5 100644
+--- a/build.vs19/lib_mpfr_tests/tfmod/tfmod.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tfmod/tfmod.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tfms/tfms.vcxproj b/build.vs19/lib_mpfr_tests/tfms/tfms.vcxproj
+index 08c17acb..2ac3fe9a 100644
+--- a/build.vs19/lib_mpfr_tests/tfms/tfms.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tfms/tfms.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tfpif/tfpif.vcxproj b/build.vs19/lib_mpfr_tests/tfpif/tfpif.vcxproj
+index 239cdc7d..61a73809 100644
+--- a/build.vs19/lib_mpfr_tests/tfpif/tfpif.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tfpif/tfpif.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tfprintf/tfprintf.vcxproj b/build.vs19/lib_mpfr_tests/tfprintf/tfprintf.vcxproj
+index 032cbb5e..ef9f2a3a 100644
+--- a/build.vs19/lib_mpfr_tests/tfprintf/tfprintf.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tfprintf/tfprintf.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tfrac/tfrac.vcxproj b/build.vs19/lib_mpfr_tests/tfrac/tfrac.vcxproj
+index 7a8cfe03..bbf9044f 100644
+--- a/build.vs19/lib_mpfr_tests/tfrac/tfrac.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tfrac/tfrac.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tfrexp/tfrexp.vcxproj b/build.vs19/lib_mpfr_tests/tfrexp/tfrexp.vcxproj
+index 5db653ef..827c345e 100644
+--- a/build.vs19/lib_mpfr_tests/tfrexp/tfrexp.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tfrexp/tfrexp.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tgamma/tgamma.vcxproj b/build.vs19/lib_mpfr_tests/tgamma/tgamma.vcxproj
+index b347f469..c73e142e 100644
+--- a/build.vs19/lib_mpfr_tests/tgamma/tgamma.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tgamma/tgamma.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tgamma_inc/tgamma_inc.vcxproj b/build.vs19/lib_mpfr_tests/tgamma_inc/tgamma_inc.vcxproj
+index 5921e7a3..ac3a89bc 100644
+--- a/build.vs19/lib_mpfr_tests/tgamma_inc/tgamma_inc.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tgamma_inc/tgamma_inc.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_d/tget_d.vcxproj b/build.vs19/lib_mpfr_tests/tget_d/tget_d.vcxproj
+index 640dbb4e..4e9d36a5 100644
+--- a/build.vs19/lib_mpfr_tests/tget_d/tget_d.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_d/tget_d.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_d_2exp/tget_d_2exp.vcxproj b/build.vs19/lib_mpfr_tests/tget_d_2exp/tget_d_2exp.vcxproj
+index 5606fd21..404b1f9e 100644
+--- a/build.vs19/lib_mpfr_tests/tget_d_2exp/tget_d_2exp.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_d_2exp/tget_d_2exp.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_f/tget_f.vcxproj b/build.vs19/lib_mpfr_tests/tget_f/tget_f.vcxproj
+index e4184fd0..33b0b8eb 100644
+--- a/build.vs19/lib_mpfr_tests/tget_f/tget_f.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_f/tget_f.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_flt/tget_flt.vcxproj b/build.vs19/lib_mpfr_tests/tget_flt/tget_flt.vcxproj
+index d45ed832..78c44f6d 100644
+--- a/build.vs19/lib_mpfr_tests/tget_flt/tget_flt.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_flt/tget_flt.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_ld_2exp/tget_ld_2exp.vcxproj b/build.vs19/lib_mpfr_tests/tget_ld_2exp/tget_ld_2exp.vcxproj
+index acc5dda9..72afcb70 100644
+--- a/build.vs19/lib_mpfr_tests/tget_ld_2exp/tget_ld_2exp.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_ld_2exp/tget_ld_2exp.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_q/tget_q.vcxproj b/build.vs19/lib_mpfr_tests/tget_q/tget_q.vcxproj
+index d687f476..db284bd8 100644
+--- a/build.vs19/lib_mpfr_tests/tget_q/tget_q.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_q/tget_q.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_set_d128/tget_set_d128.vcxproj b/build.vs19/lib_mpfr_tests/tget_set_d128/tget_set_d128.vcxproj
+index 4c971b0e..7b1f9c05 100644
+--- a/build.vs19/lib_mpfr_tests/tget_set_d128/tget_set_d128.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_set_d128/tget_set_d128.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_set_d64/tget_set_d64.vcxproj b/build.vs19/lib_mpfr_tests/tget_set_d64/tget_set_d64.vcxproj
+index 93723815..d3122846 100644
+--- a/build.vs19/lib_mpfr_tests/tget_set_d64/tget_set_d64.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_set_d64/tget_set_d64.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_sj/tget_sj.vcxproj b/build.vs19/lib_mpfr_tests/tget_sj/tget_sj.vcxproj
+index 5e3b49e4..ca59196e 100644
+--- a/build.vs19/lib_mpfr_tests/tget_sj/tget_sj.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_sj/tget_sj.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_str/tget_str.vcxproj b/build.vs19/lib_mpfr_tests/tget_str/tget_str.vcxproj
+index 27c54d4d..5b0dc506 100644
+--- a/build.vs19/lib_mpfr_tests/tget_str/tget_str.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_str/tget_str.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tget_z/tget_z.vcxproj b/build.vs19/lib_mpfr_tests/tget_z/tget_z.vcxproj
+index a5a89611..bb6c84d6 100644
+--- a/build.vs19/lib_mpfr_tests/tget_z/tget_z.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tget_z/tget_z.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tgmpop/tgmpop.vcxproj b/build.vs19/lib_mpfr_tests/tgmpop/tgmpop.vcxproj
+index d74ffa81..04836906 100644
+--- a/build.vs19/lib_mpfr_tests/tgmpop/tgmpop.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tgmpop/tgmpop.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tgrandom/tgrandom.vcxproj b/build.vs19/lib_mpfr_tests/tgrandom/tgrandom.vcxproj
+index e30f8f2c..e231fcae 100644
+--- a/build.vs19/lib_mpfr_tests/tgrandom/tgrandom.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tgrandom/tgrandom.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/thyperbolic/thyperbolic.vcxproj b/build.vs19/lib_mpfr_tests/thyperbolic/thyperbolic.vcxproj
+index 7e7d77b4..fee6588f 100644
+--- a/build.vs19/lib_mpfr_tests/thyperbolic/thyperbolic.vcxproj
++++ b/build.vs19/lib_mpfr_tests/thyperbolic/thyperbolic.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/thypot/thypot.vcxproj b/build.vs19/lib_mpfr_tests/thypot/thypot.vcxproj
+index 7365e9f7..882449a5 100644
+--- a/build.vs19/lib_mpfr_tests/thypot/thypot.vcxproj
++++ b/build.vs19/lib_mpfr_tests/thypot/thypot.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tinits/tinits.vcxproj b/build.vs19/lib_mpfr_tests/tinits/tinits.vcxproj
+index 1b5c74d4..be26d4c1 100644
+--- a/build.vs19/lib_mpfr_tests/tinits/tinits.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tinits/tinits.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tinp_str/tinp_str.vcxproj b/build.vs19/lib_mpfr_tests/tinp_str/tinp_str.vcxproj
+index 30ca1d95..effd7896 100644
+--- a/build.vs19/lib_mpfr_tests/tinp_str/tinp_str.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tinp_str/tinp_str.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tinternals/tinternals.vcxproj b/build.vs19/lib_mpfr_tests/tinternals/tinternals.vcxproj
+index 6429d8ab..0ca5e287 100644
+--- a/build.vs19/lib_mpfr_tests/tinternals/tinternals.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tinternals/tinternals.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tisnan/tisnan.vcxproj b/build.vs19/lib_mpfr_tests/tisnan/tisnan.vcxproj
+index a2882f7f..60466c1d 100644
+--- a/build.vs19/lib_mpfr_tests/tisnan/tisnan.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tisnan/tisnan.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tisqrt/tisqrt.vcxproj b/build.vs19/lib_mpfr_tests/tisqrt/tisqrt.vcxproj
+index 5eef6715..5762bd33 100644
+--- a/build.vs19/lib_mpfr_tests/tisqrt/tisqrt.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tisqrt/tisqrt.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tj0/tj0.vcxproj b/build.vs19/lib_mpfr_tests/tj0/tj0.vcxproj
+index fd79adb1..b0f8f81e 100644
+--- a/build.vs19/lib_mpfr_tests/tj0/tj0.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tj0/tj0.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tj1/tj1.vcxproj b/build.vs19/lib_mpfr_tests/tj1/tj1.vcxproj
+index fd490e18..ebc63114 100644
+--- a/build.vs19/lib_mpfr_tests/tj1/tj1.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tj1/tj1.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tjn/tjn.vcxproj b/build.vs19/lib_mpfr_tests/tjn/tjn.vcxproj
+index 90722cc6..2578d20f 100644
+--- a/build.vs19/lib_mpfr_tests/tjn/tjn.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tjn/tjn.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tl2b/tl2b.vcxproj b/build.vs19/lib_mpfr_tests/tl2b/tl2b.vcxproj
+index fa271e03..7650cb39 100644
+--- a/build.vs19/lib_mpfr_tests/tl2b/tl2b.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tl2b/tl2b.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tlgamma/tlgamma.vcxproj b/build.vs19/lib_mpfr_tests/tlgamma/tlgamma.vcxproj
+index e06fd5c5..6bca619c 100644
+--- a/build.vs19/lib_mpfr_tests/tlgamma/tlgamma.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tlgamma/tlgamma.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tli2/tli2.vcxproj b/build.vs19/lib_mpfr_tests/tli2/tli2.vcxproj
+index ee89e213..6da21466 100644
+--- a/build.vs19/lib_mpfr_tests/tli2/tli2.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tli2/tli2.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tlngamma/tlngamma.vcxproj b/build.vs19/lib_mpfr_tests/tlngamma/tlngamma.vcxproj
+index 0b96011d..b8b0fffc 100644
+--- a/build.vs19/lib_mpfr_tests/tlngamma/tlngamma.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tlngamma/tlngamma.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tlog/tlog.vcxproj b/build.vs19/lib_mpfr_tests/tlog/tlog.vcxproj
+index 343a1df1..787c71c4 100644
+--- a/build.vs19/lib_mpfr_tests/tlog/tlog.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tlog/tlog.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tlog10/tlog10.vcxproj b/build.vs19/lib_mpfr_tests/tlog10/tlog10.vcxproj
+index 1e67345e..04fd8ba5 100644
+--- a/build.vs19/lib_mpfr_tests/tlog10/tlog10.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tlog10/tlog10.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tlog1p/tlog1p.vcxproj b/build.vs19/lib_mpfr_tests/tlog1p/tlog1p.vcxproj
+index c7ec0cc3..b6bb18e2 100644
+--- a/build.vs19/lib_mpfr_tests/tlog1p/tlog1p.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tlog1p/tlog1p.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tlog2/tlog2.vcxproj b/build.vs19/lib_mpfr_tests/tlog2/tlog2.vcxproj
+index 2724e950..d3e18d2f 100644
+--- a/build.vs19/lib_mpfr_tests/tlog2/tlog2.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tlog2/tlog2.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tlog_ui/tlog_ui.vcxproj b/build.vs19/lib_mpfr_tests/tlog_ui/tlog_ui.vcxproj
+index 5aa95269..9898a4b1 100644
+--- a/build.vs19/lib_mpfr_tests/tlog_ui/tlog_ui.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tlog_ui/tlog_ui.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tmin_prec/tmin_prec.vcxproj b/build.vs19/lib_mpfr_tests/tmin_prec/tmin_prec.vcxproj
+index 7d222c1d..0970be07 100644
+--- a/build.vs19/lib_mpfr_tests/tmin_prec/tmin_prec.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tmin_prec/tmin_prec.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tminmax/tminmax.vcxproj b/build.vs19/lib_mpfr_tests/tminmax/tminmax.vcxproj
+index c2de145c..d8389934 100644
+--- a/build.vs19/lib_mpfr_tests/tminmax/tminmax.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tminmax/tminmax.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tmodf/tmodf.vcxproj b/build.vs19/lib_mpfr_tests/tmodf/tmodf.vcxproj
+index c9731b07..e5ae3a6b 100644
+--- a/build.vs19/lib_mpfr_tests/tmodf/tmodf.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tmodf/tmodf.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tmul/tmul.vcxproj b/build.vs19/lib_mpfr_tests/tmul/tmul.vcxproj
+index 95f1b933..e52a2336 100644
+--- a/build.vs19/lib_mpfr_tests/tmul/tmul.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tmul/tmul.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tmul_2exp/tmul_2exp.vcxproj b/build.vs19/lib_mpfr_tests/tmul_2exp/tmul_2exp.vcxproj
+index d75b7e9e..60edcf95 100644
+--- a/build.vs19/lib_mpfr_tests/tmul_2exp/tmul_2exp.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tmul_2exp/tmul_2exp.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tmul_d/tmul_d.vcxproj b/build.vs19/lib_mpfr_tests/tmul_d/tmul_d.vcxproj
+index c78956dd..2f9c5f82 100644
+--- a/build.vs19/lib_mpfr_tests/tmul_d/tmul_d.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tmul_d/tmul_d.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tmul_ui/tmul_ui.vcxproj b/build.vs19/lib_mpfr_tests/tmul_ui/tmul_ui.vcxproj
+index 9c8f56c1..956bcc08 100644
+--- a/build.vs19/lib_mpfr_tests/tmul_ui/tmul_ui.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tmul_ui/tmul_ui.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tnext/tnext.vcxproj b/build.vs19/lib_mpfr_tests/tnext/tnext.vcxproj
+index 1e9ee402..f9ad8e9c 100644
+--- a/build.vs19/lib_mpfr_tests/tnext/tnext.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tnext/tnext.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tnrandom/tnrandom.vcxproj b/build.vs19/lib_mpfr_tests/tnrandom/tnrandom.vcxproj
+index 211e9b41..fe6a6dd7 100644
+--- a/build.vs19/lib_mpfr_tests/tnrandom/tnrandom.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tnrandom/tnrandom.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tnrandom_chisq/tnrandom_chisq.vcxproj b/build.vs19/lib_mpfr_tests/tnrandom_chisq/tnrandom_chisq.vcxproj
+index 18c539cb..4ed4f610 100644
+--- a/build.vs19/lib_mpfr_tests/tnrandom_chisq/tnrandom_chisq.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tnrandom_chisq/tnrandom_chisq.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tout_str/tout_str.vcxproj b/build.vs19/lib_mpfr_tests/tout_str/tout_str.vcxproj
+index 4a0ea540..32b82d97 100644
+--- a/build.vs19/lib_mpfr_tests/tout_str/tout_str.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tout_str/tout_str.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/toutimpl/toutimpl.vcxproj b/build.vs19/lib_mpfr_tests/toutimpl/toutimpl.vcxproj
+index 58f44ac3..bee2343d 100644
+--- a/build.vs19/lib_mpfr_tests/toutimpl/toutimpl.vcxproj
++++ b/build.vs19/lib_mpfr_tests/toutimpl/toutimpl.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tpow/tpow.vcxproj b/build.vs19/lib_mpfr_tests/tpow/tpow.vcxproj
+index 6614d5bd..eb5b5853 100644
+--- a/build.vs19/lib_mpfr_tests/tpow/tpow.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tpow/tpow.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tpow3/tpow3.vcxproj b/build.vs19/lib_mpfr_tests/tpow3/tpow3.vcxproj
+index 0d530fb9..2319585d 100644
+--- a/build.vs19/lib_mpfr_tests/tpow3/tpow3.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tpow3/tpow3.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tpow_all/tpow_all.vcxproj b/build.vs19/lib_mpfr_tests/tpow_all/tpow_all.vcxproj
+index 1467fea6..734f6578 100644
+--- a/build.vs19/lib_mpfr_tests/tpow_all/tpow_all.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tpow_all/tpow_all.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tpow_z/tpow_z.vcxproj b/build.vs19/lib_mpfr_tests/tpow_z/tpow_z.vcxproj
+index 68295aae..58d18369 100644
+--- a/build.vs19/lib_mpfr_tests/tpow_z/tpow_z.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tpow_z/tpow_z.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tprec_round/tprec_round.vcxproj b/build.vs19/lib_mpfr_tests/tprec_round/tprec_round.vcxproj
+index 5ef28572..efa27c73 100644
+--- a/build.vs19/lib_mpfr_tests/tprec_round/tprec_round.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tprec_round/tprec_round.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tprintf/tprintf.vcxproj b/build.vs19/lib_mpfr_tests/tprintf/tprintf.vcxproj
+index 339411cc..63b86106 100644
+--- a/build.vs19/lib_mpfr_tests/tprintf/tprintf.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tprintf/tprintf.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/trandom/trandom.vcxproj b/build.vs19/lib_mpfr_tests/trandom/trandom.vcxproj
+index 8506b3a5..e1e6f898 100644
+--- a/build.vs19/lib_mpfr_tests/trandom/trandom.vcxproj
++++ b/build.vs19/lib_mpfr_tests/trandom/trandom.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/trandom_deviate/trandom_deviate.vcxproj b/build.vs19/lib_mpfr_tests/trandom_deviate/trandom_deviate.vcxproj
+index 60fd4f79..9fd3b616 100644
+--- a/build.vs19/lib_mpfr_tests/trandom_deviate/trandom_deviate.vcxproj
++++ b/build.vs19/lib_mpfr_tests/trandom_deviate/trandom_deviate.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/trec_sqrt/trec_sqrt.vcxproj b/build.vs19/lib_mpfr_tests/trec_sqrt/trec_sqrt.vcxproj
+index 6f0e0d5e..45a03c4e 100644
+--- a/build.vs19/lib_mpfr_tests/trec_sqrt/trec_sqrt.vcxproj
++++ b/build.vs19/lib_mpfr_tests/trec_sqrt/trec_sqrt.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tremquo/tremquo.vcxproj b/build.vs19/lib_mpfr_tests/tremquo/tremquo.vcxproj
+index 7580c8db..b54c9fc2 100644
+--- a/build.vs19/lib_mpfr_tests/tremquo/tremquo.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tremquo/tremquo.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/trint/trint.vcxproj b/build.vs19/lib_mpfr_tests/trint/trint.vcxproj
+index d3c6474b..4e880e95 100644
+--- a/build.vs19/lib_mpfr_tests/trint/trint.vcxproj
++++ b/build.vs19/lib_mpfr_tests/trint/trint.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/trndna/trndna.vcxproj b/build.vs19/lib_mpfr_tests/trndna/trndna.vcxproj
+index 72bf49f5..c4165609 100644
+--- a/build.vs19/lib_mpfr_tests/trndna/trndna.vcxproj
++++ b/build.vs19/lib_mpfr_tests/trndna/trndna.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/troot/troot.vcxproj b/build.vs19/lib_mpfr_tests/troot/troot.vcxproj
+index 617799a5..d74551cb 100644
+--- a/build.vs19/lib_mpfr_tests/troot/troot.vcxproj
++++ b/build.vs19/lib_mpfr_tests/troot/troot.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/trootn_ui/trootn_ui.vcxproj b/build.vs19/lib_mpfr_tests/trootn_ui/trootn_ui.vcxproj
+index a22f29c8..a47bef48 100644
+--- a/build.vs19/lib_mpfr_tests/trootn_ui/trootn_ui.vcxproj
++++ b/build.vs19/lib_mpfr_tests/trootn_ui/trootn_ui.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsec/tsec.vcxproj b/build.vs19/lib_mpfr_tests/tsec/tsec.vcxproj
+index c41638b8..ccfd8d7c 100644
+--- a/build.vs19/lib_mpfr_tests/tsec/tsec.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsec/tsec.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsech/tsech.vcxproj b/build.vs19/lib_mpfr_tests/tsech/tsech.vcxproj
+index 89c5ab31..6cebc9ec 100644
+--- a/build.vs19/lib_mpfr_tests/tsech/tsech.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsech/tsech.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset/tset.vcxproj b/build.vs19/lib_mpfr_tests/tset/tset.vcxproj
+index c18e0092..9cc175b9 100644
+--- a/build.vs19/lib_mpfr_tests/tset/tset.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset/tset.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_d/tset_d.vcxproj b/build.vs19/lib_mpfr_tests/tset_d/tset_d.vcxproj
+index 36b9719f..ea47dc29 100644
+--- a/build.vs19/lib_mpfr_tests/tset_d/tset_d.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_d/tset_d.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_exp/tset_exp.vcxproj b/build.vs19/lib_mpfr_tests/tset_exp/tset_exp.vcxproj
+index 95810c3e..c234607a 100644
+--- a/build.vs19/lib_mpfr_tests/tset_exp/tset_exp.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_exp/tset_exp.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_f/tset_f.vcxproj b/build.vs19/lib_mpfr_tests/tset_f/tset_f.vcxproj
+index bc09744b..9afce049 100644
+--- a/build.vs19/lib_mpfr_tests/tset_f/tset_f.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_f/tset_f.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_float128/tset_float128.vcxproj b/build.vs19/lib_mpfr_tests/tset_float128/tset_float128.vcxproj
+index 67f2d41c..5f2c8924 100644
+--- a/build.vs19/lib_mpfr_tests/tset_float128/tset_float128.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_float128/tset_float128.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_ld/tset_ld.vcxproj b/build.vs19/lib_mpfr_tests/tset_ld/tset_ld.vcxproj
+index ca1c364a..14689211 100644
+--- a/build.vs19/lib_mpfr_tests/tset_ld/tset_ld.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_ld/tset_ld.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_q/tset_q.vcxproj b/build.vs19/lib_mpfr_tests/tset_q/tset_q.vcxproj
+index 45ecbd6f..1f6952b6 100644
+--- a/build.vs19/lib_mpfr_tests/tset_q/tset_q.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_q/tset_q.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_si/tset_si.vcxproj b/build.vs19/lib_mpfr_tests/tset_si/tset_si.vcxproj
+index f8fe5e0b..cd609e3c 100644
+--- a/build.vs19/lib_mpfr_tests/tset_si/tset_si.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_si/tset_si.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_sj/tset_sj.vcxproj b/build.vs19/lib_mpfr_tests/tset_sj/tset_sj.vcxproj
+index c030c0d0..b3d93425 100644
+--- a/build.vs19/lib_mpfr_tests/tset_sj/tset_sj.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_sj/tset_sj.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_str/tset_str.vcxproj b/build.vs19/lib_mpfr_tests/tset_str/tset_str.vcxproj
+index 0f96aa4d..d7248918 100644
+--- a/build.vs19/lib_mpfr_tests/tset_str/tset_str.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_str/tset_str.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_z/tset_z.vcxproj b/build.vs19/lib_mpfr_tests/tset_z/tset_z.vcxproj
+index 826d40d6..1c6bd5c2 100644
+--- a/build.vs19/lib_mpfr_tests/tset_z/tset_z.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_z/tset_z.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tset_z_exp/tset_z_exp.vcxproj b/build.vs19/lib_mpfr_tests/tset_z_exp/tset_z_exp.vcxproj
+index 9cdd2468..42283be7 100644
+--- a/build.vs19/lib_mpfr_tests/tset_z_exp/tset_z_exp.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tset_z_exp/tset_z_exp.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.30128.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsgn/tsgn.vcxproj b/build.vs19/lib_mpfr_tests/tsgn/tsgn.vcxproj
+index 70b5ef80..e416afaf 100644
+--- a/build.vs19/lib_mpfr_tests/tsgn/tsgn.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsgn/tsgn.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsi_op/tsi_op.vcxproj b/build.vs19/lib_mpfr_tests/tsi_op/tsi_op.vcxproj
+index 25e54898..f4b76c14 100644
+--- a/build.vs19/lib_mpfr_tests/tsi_op/tsi_op.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsi_op/tsi_op.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsin/tsin.vcxproj b/build.vs19/lib_mpfr_tests/tsin/tsin.vcxproj
+index 7fb3bed9..c4289447 100644
+--- a/build.vs19/lib_mpfr_tests/tsin/tsin.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsin/tsin.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsin_cos/tsin_cos.vcxproj b/build.vs19/lib_mpfr_tests/tsin_cos/tsin_cos.vcxproj
+index 2e814100..2538aa97 100644
+--- a/build.vs19/lib_mpfr_tests/tsin_cos/tsin_cos.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsin_cos/tsin_cos.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsinh/tsinh.vcxproj b/build.vs19/lib_mpfr_tests/tsinh/tsinh.vcxproj
+index c12b52f2..5bec973d 100644
+--- a/build.vs19/lib_mpfr_tests/tsinh/tsinh.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsinh/tsinh.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsinh_cosh/tsinh_cosh.vcxproj b/build.vs19/lib_mpfr_tests/tsinh_cosh/tsinh_cosh.vcxproj
+index 9655d1d2..68f75ff8 100644
+--- a/build.vs19/lib_mpfr_tests/tsinh_cosh/tsinh_cosh.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsinh_cosh/tsinh_cosh.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsprintf/tsprintf.vcxproj b/build.vs19/lib_mpfr_tests/tsprintf/tsprintf.vcxproj
+index 492019c8..57a38cf1 100644
+--- a/build.vs19/lib_mpfr_tests/tsprintf/tsprintf.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsprintf/tsprintf.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsqr/tsqr.vcxproj b/build.vs19/lib_mpfr_tests/tsqr/tsqr.vcxproj
+index b05525e5..28c57196 100644
+--- a/build.vs19/lib_mpfr_tests/tsqr/tsqr.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsqr/tsqr.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsqrt/tsqrt.vcxproj b/build.vs19/lib_mpfr_tests/tsqrt/tsqrt.vcxproj
+index 0d30a4a7..682ff75a 100644
+--- a/build.vs19/lib_mpfr_tests/tsqrt/tsqrt.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsqrt/tsqrt.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsqrt_ui/tsqrt_ui.vcxproj b/build.vs19/lib_mpfr_tests/tsqrt_ui/tsqrt_ui.vcxproj
+index 9ffe5915..afcff798 100644
+--- a/build.vs19/lib_mpfr_tests/tsqrt_ui/tsqrt_ui.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsqrt_ui/tsqrt_ui.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tstckintc/tstckintc.vcxproj b/build.vs19/lib_mpfr_tests/tstckintc/tstckintc.vcxproj
+index 07f1eab2..433a540b 100644
+--- a/build.vs19/lib_mpfr_tests/tstckintc/tstckintc.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tstckintc/tstckintc.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tstdint/tstdint.vcxproj b/build.vs19/lib_mpfr_tests/tstdint/tstdint.vcxproj
+index 19120d35..52046835 100644
+--- a/build.vs19/lib_mpfr_tests/tstdint/tstdint.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tstdint/tstdint.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.30128.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tstrtofr/tstrtofr.vcxproj b/build.vs19/lib_mpfr_tests/tstrtofr/tstrtofr.vcxproj
+index 3ee7785a..b1e8cf3a 100644
+--- a/build.vs19/lib_mpfr_tests/tstrtofr/tstrtofr.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tstrtofr/tstrtofr.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsub/tsub.vcxproj b/build.vs19/lib_mpfr_tests/tsub/tsub.vcxproj
+index b1b3b4ef..e69ac125 100644
+--- a/build.vs19/lib_mpfr_tests/tsub/tsub.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsub/tsub.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsub1sp/tsub1sp.vcxproj b/build.vs19/lib_mpfr_tests/tsub1sp/tsub1sp.vcxproj
+index 7b34e819..ab0dcf27 100644
+--- a/build.vs19/lib_mpfr_tests/tsub1sp/tsub1sp.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsub1sp/tsub1sp.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsub_d/tsub_d.vcxproj b/build.vs19/lib_mpfr_tests/tsub_d/tsub_d.vcxproj
+index b9836a5f..c5d5ebe4 100644
+--- a/build.vs19/lib_mpfr_tests/tsub_d/tsub_d.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsub_d/tsub_d.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsub_ui/tsub_ui.vcxproj b/build.vs19/lib_mpfr_tests/tsub_ui/tsub_ui.vcxproj
+index 65b6d044..1bec0dc1 100644
+--- a/build.vs19/lib_mpfr_tests/tsub_ui/tsub_ui.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsub_ui/tsub_ui.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsubnormal/tsubnormal.vcxproj b/build.vs19/lib_mpfr_tests/tsubnormal/tsubnormal.vcxproj
+index 525979e3..613358d4 100644
+--- a/build.vs19/lib_mpfr_tests/tsubnormal/tsubnormal.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsubnormal/tsubnormal.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tsum/tsum.vcxproj b/build.vs19/lib_mpfr_tests/tsum/tsum.vcxproj
+index 0a287acf..6ee64388 100644
+--- a/build.vs19/lib_mpfr_tests/tsum/tsum.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tsum/tsum.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tswap/tswap.vcxproj b/build.vs19/lib_mpfr_tests/tswap/tswap.vcxproj
+index a68407a0..ce845fb0 100644
+--- a/build.vs19/lib_mpfr_tests/tswap/tswap.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tswap/tswap.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/ttan/ttan.vcxproj b/build.vs19/lib_mpfr_tests/ttan/ttan.vcxproj
+index aa41d82b..07ee149b 100644
+--- a/build.vs19/lib_mpfr_tests/ttan/ttan.vcxproj
++++ b/build.vs19/lib_mpfr_tests/ttan/ttan.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/ttanh/ttanh.vcxproj b/build.vs19/lib_mpfr_tests/ttanh/ttanh.vcxproj
+index 77cbc857..dc726624 100644
+--- a/build.vs19/lib_mpfr_tests/ttanh/ttanh.vcxproj
++++ b/build.vs19/lib_mpfr_tests/ttanh/ttanh.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/ttotal_order/ttotal_order.vcxproj b/build.vs19/lib_mpfr_tests/ttotal_order/ttotal_order.vcxproj
+index 56e8db44..787faa91 100644
+--- a/build.vs19/lib_mpfr_tests/ttotal_order/ttotal_order.vcxproj
++++ b/build.vs19/lib_mpfr_tests/ttotal_order/ttotal_order.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/ttrunc/ttrunc.vcxproj b/build.vs19/lib_mpfr_tests/ttrunc/ttrunc.vcxproj
+index 567c35f5..744cd9f7 100644
+--- a/build.vs19/lib_mpfr_tests/ttrunc/ttrunc.vcxproj
++++ b/build.vs19/lib_mpfr_tests/ttrunc/ttrunc.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tui_div/tui_div.vcxproj b/build.vs19/lib_mpfr_tests/tui_div/tui_div.vcxproj
+index 31d0c2e6..10a32af3 100644
+--- a/build.vs19/lib_mpfr_tests/tui_div/tui_div.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tui_div/tui_div.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tui_pow/tui_pow.vcxproj b/build.vs19/lib_mpfr_tests/tui_pow/tui_pow.vcxproj
+index 917ea1df..0609cf92 100644
+--- a/build.vs19/lib_mpfr_tests/tui_pow/tui_pow.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tui_pow/tui_pow.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tui_sub/tui_sub.vcxproj b/build.vs19/lib_mpfr_tests/tui_sub/tui_sub.vcxproj
+index ad059e52..e246b094 100644
+--- a/build.vs19/lib_mpfr_tests/tui_sub/tui_sub.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tui_sub/tui_sub.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/turandom/turandom.vcxproj b/build.vs19/lib_mpfr_tests/turandom/turandom.vcxproj
+index 00d8383e..5fb75f83 100644
+--- a/build.vs19/lib_mpfr_tests/turandom/turandom.vcxproj
++++ b/build.vs19/lib_mpfr_tests/turandom/turandom.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tvalist/tvalist.vcxproj b/build.vs19/lib_mpfr_tests/tvalist/tvalist.vcxproj
+index 7ff65985..d4d32dac 100644
+--- a/build.vs19/lib_mpfr_tests/tvalist/tvalist.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tvalist/tvalist.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tversion/tversion.vcxproj b/build.vs19/lib_mpfr_tests/tversion/tversion.vcxproj
+index 08d5a137..c79c9639 100644
+--- a/build.vs19/lib_mpfr_tests/tversion/tversion.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tversion/tversion.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/ty0/ty0.vcxproj b/build.vs19/lib_mpfr_tests/ty0/ty0.vcxproj
+index f478c767..9e8eb23a 100644
+--- a/build.vs19/lib_mpfr_tests/ty0/ty0.vcxproj
++++ b/build.vs19/lib_mpfr_tests/ty0/ty0.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/ty1/ty1.vcxproj b/build.vs19/lib_mpfr_tests/ty1/ty1.vcxproj
+index 6440cf69..104b5362 100644
+--- a/build.vs19/lib_mpfr_tests/ty1/ty1.vcxproj
++++ b/build.vs19/lib_mpfr_tests/ty1/ty1.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tyn/tyn.vcxproj b/build.vs19/lib_mpfr_tests/tyn/tyn.vcxproj
+index 88710e2f..017d7f58 100644
+--- a/build.vs19/lib_mpfr_tests/tyn/tyn.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tyn/tyn.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tzeta/tzeta.vcxproj b/build.vs19/lib_mpfr_tests/tzeta/tzeta.vcxproj
+index f6af2e0f..4dc890dd 100644
+--- a/build.vs19/lib_mpfr_tests/tzeta/tzeta.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tzeta/tzeta.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/lib_mpfr_tests/tzeta_ui/tzeta_ui.vcxproj b/build.vs19/lib_mpfr_tests/tzeta_ui/tzeta_ui.vcxproj
+index 66332f60..11a9501d 100644
+--- a/build.vs19/lib_mpfr_tests/tzeta_ui/tzeta_ui.vcxproj
++++ b/build.vs19/lib_mpfr_tests/tzeta_ui/tzeta_ui.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -29,10 +37,18 @@
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+
++
++ Application
++ v142
++
+
+ Application
+ v142
+@@ -47,9 +63,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -60,11 +82,15 @@
+
+ <_ProjectFileVersion>10.0.21006.1
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
++ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
+ $(SolutionDir)lib_mpfr_tests\$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+@@ -87,6 +113,25 @@
+
+
+
++
++
++ Full
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++
++
++ MultiThreaded
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++ true
++ true
++
++
++
++
+
+
+ X64
+@@ -130,6 +175,27 @@
+
+
+
++
++
++ Disabled
++ ..\..\;..\..\..\src\;..\..\..\..\mpir\lib\$(IntDir);%(AdditionalIncludeDirectories)
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ MultiThreadedDebug
++
++
++ true
++ ..\..\..\..\mpir\lib\$(IntDir)\config.h
++
++
++ ..\$(IntDir)lib_tests.lib;..\..\..\lib\$(IntDir)mpfr.lib;..\..\..\..\mpir\lib\$(IntDir)mpir.lib
++
++
++
++
++
++
++
++
+
+
+ X64
+diff --git a/build.vs19/timing/timing.vcxproj b/build.vs19/timing/timing.vcxproj
+index 71a2f7ab..f4ff21c3 100644
+--- a/build.vs19/timing/timing.vcxproj
++++ b/build.vs19/timing/timing.vcxproj
+@@ -1,10 +1,18 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -34,6 +42,12 @@
+ v142
+ MultiByte
+
++
++ Application
++ true
++ v142
++ MultiByte
++
+
+ Application
+ false
+@@ -41,6 +55,13 @@
+ true
+ MultiByte
+
++
++ Application
++ false
++ v142
++ true
++ MultiByte
++
+
+ Application
+ true
+@@ -62,9 +83,15 @@
+
+
+
++
++
++
+
+
+
++
++
++
+
+
+
+@@ -76,10 +103,18 @@
+ $(SolutionDir)$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
++
++ $(SolutionDir)$(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
++
+
+ $(SolutionDir)$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
++
++ $(SolutionDir)$(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
++
+
+
+ Level3
+@@ -110,6 +145,19 @@
+ ..\..\lib\$(IntDir)mpfr.lib;..\..\..\mpir\lib\$(IntDir)mpir.lib;..\..\..\mpir\msvc\vs17\$(IntDir)lib_speed.lib;%(AdditionalDependencies)
+
+
++
++
++ Level3
++ Disabled
++ true
++ true
++ MultiThreadedDebug
++ ..\;..\..\;..\..\src\;..\..\..\mpir\lib\$(IntDir);..\..\..\mpir\tune;..\..\..\mpir\build.vc;%(AdditionalIncludeDirectories)
++
++
++ ..\..\lib\$(IntDir)mpfr.lib;..\..\..\mpir\lib\$(IntDir)mpir.lib;..\..\..\mpir\msvc\vs17\$(IntDir)lib_speed.lib;%(AdditionalDependencies)
++
++
+
+
+ Level3
+@@ -140,6 +188,23 @@
+ ..\..\lib\$(IntDir)mpfr.lib;..\..\..\mpir\lib\$(IntDir)mpir.lib;..\..\..\mpir\msvc\vs17\$(IntDir)lib_speed.lib;%(AdditionalDependencies)
+
+
++
++
++ Level3
++ MaxSpeed
++ true
++ true
++ true
++ true
++ MultiThreaded
++ ..\;..\..\;..\..\src\;..\..\..\mpir\lib\$(IntDir);..\..\..\mpir\tune;..\..\..\mpir\build.vc;%(AdditionalIncludeDirectories)
++
++
++ true
++ true
++ ..\..\lib\$(IntDir)mpfr.lib;..\..\..\mpir\lib\$(IntDir)mpir.lib;..\..\..\mpir\msvc\vs17\$(IntDir)lib_speed.lib;%(AdditionalDependencies)
++
++
+
+
+
+diff --git a/build.vs19/tuneup/tuneup.vcxproj b/build.vs19/tuneup/tuneup.vcxproj
+index d076c235..61ef8867 100644
+--- a/build.vs19/tuneup/tuneup.vcxproj
++++ b/build.vs19/tuneup/tuneup.vcxproj
+@@ -1,6 +1,10 @@
+
+
+
++
++ Debug
++ ARM64
++
+
+ Debug
+ Win32
+@@ -9,6 +13,10 @@
+ Debug
+ x64
+
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -31,6 +39,12 @@
+ NotSet
+ v142
+
++
++ Application
++ true
++ NotSet
++ v142
++
+
+ Application
+ true
+@@ -44,6 +58,13 @@
+ NotSet
+ v142
+
++
++ Application
++ false
++ true
++ NotSet
++ v142
++
+
+ Application
+ false
+@@ -57,12 +78,18 @@
+
+
+
++
++
++
+
+
+
+
+
+
++
++
++
+
+
+
+@@ -72,6 +99,11 @@
+ $(SolutionDir)$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
++
++ true
++ $(SolutionDir)$(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
++
+
+ true
+ $(SolutionDir)$(Platform)\$(Configuration)\
+@@ -82,6 +114,11 @@
+ $(SolutionDir)$(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
++
++ false
++ $(SolutionDir)$(Platform)\$(Configuration)\
++ $(Platform)\$(Configuration)\
++
+
+ false
+ $(SolutionDir)$(Platform)\$(Configuration)\
+@@ -107,6 +144,26 @@
+ ..\..\lib\$(IntDir)mpfr.lib;..\..\..\mpir\lib\$(IntDir)mpir.lib;..\..\..\mpir\msvc\vs17\$(IntDir)lib_speed.lib;%(AdditionalDependencies)
+
+
++
++
++
++
++ Level3
++ Disabled
++ WIN32;_DEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ ..\;..\..\;..\..\src\;..\..\..\mpir\lib\$(IntDir);..\..\..\mpir\tune;..\..\..\mpir\msvc;%(AdditionalIncludeDirectories)
++ MultiThreadedDebug
++
++
++ true
++ true
++
++
++ Console
++ true
++ ..\..\lib\$(IntDir)mpfr.lib;..\..\..\mpir\lib\$(IntDir)mpir.lib;..\..\..\mpir\msvc\vs17\$(IntDir)lib_speed.lib;%(AdditionalDependencies)
++
++
+
+
+
+@@ -150,6 +207,29 @@
+ ..\..\lib\$(IntDir)mpfr.lib;..\..\..\mpir\lib\$(IntDir)mpir.lib;..\..\..\mpir\msvc\vs17\$(IntDir)lib_speed.lib;%(AdditionalDependencies)
+
+
++
++
++ Level3
++
++
++ Full
++ true
++ true
++ WIN32;NDEBUG;_CONSOLE;MPFR_HAVE_GMP_IMPL
++ ..\;..\..\;..\..\src\;..\..\..\mpir\lib\$(IntDir);..\..\..\mpir\tune;..\..\..\mpir\msvc;%(AdditionalIncludeDirectories)
++ MultiThreaded
++
++
++ true
++
++
++ Console
++ true
++ true
++ true
++ ..\..\lib\$(IntDir)mpfr.lib;..\..\..\mpir\lib\$(IntDir)mpir.lib;..\..\..\mpir\msvc\vs17\$(IntDir)lib_speed.lib;%(AdditionalDependencies)
++
++
+
+
+ Level3
diff --git a/win/patches/mpir-arm64-changes.patch b/win/patches/mpir-arm64-changes.patch
new file mode 100644
index 0000000000..ab68519c2c
--- /dev/null
+++ b/win/patches/mpir-arm64-changes.patch
@@ -0,0 +1,519 @@
+diff --git a/msvc/postbuild.bat b/msvc/postbuild.bat
+index 1c301d1a..7d5362be 100644
+--- a/msvc/postbuild.bat
++++ b/msvc/postbuild.bat
+@@ -1,6 +1,6 @@
+ @echo off
+ rem %1 = full target path
+-rem %2 = last two digits of the Visual Studio version number (e.g. 17)
++rem %2 = last two digits of the Visual Studio version number (e.g. 17 or 22)
+
+ set vs_ver=%2
+ set str=%~1
+@@ -20,11 +20,13 @@ goto dele
+ set str=%str_confirmed%
+ echo "Final subpath %str%"
+
+-rem we now have: msvc.\vs\\\\mpir.
+-rem extract: project_directory, platform (plat=), configuration (conf=) and file name
++rem we now have: msvc\vs\\\\mpir(.xx).
++rem extract: project_directory, platform (plat), configuration (conf) and file name
+
+ set file=
+-for /f "tokens=1,2,3,4,5,6 delims=\" %%a in ("%str%") do set tloc=%%c&set plat=%%d&set conf=%%e&set file=%%f
++for /f "tokens=1,2,3,4,5,6 delims=\" %%a in ("%str%") do (
++ set tloc=%%c&set plat=%%d&set conf=%%e&set file=%%f
++)
+ if /i "%file%" NEQ "" (goto next)
+ call :seterr & echo ERROR: %1 is not supported & exit /b %errorlevel%
+
+@@ -42,9 +44,9 @@ call :seterr & echo "postbuild copy error ERROR: target=%tloc%, plat=%plat%, con
+
+ :is2nd:
+ rem set the target and final binary output directories
+-set tgt_dir="vs%vs_ver%\%loc%%plat%\%conf%\"
+-set bin_dir="..\%extn%\%plat%\%conf%\"
+-set hdr_dir="..\%extn%\%plat%\%conf%\"
++set "tgt_dir=vs%vs_ver%\%loc%%plat%\%conf%"
++set "bin_dir=..\%extn%\%plat%\%conf%"
++set "hdr_dir=..\%extn%\%plat%\%conf%"
+
+ rem output parametrers for the MPIR tests
+ if /i "%filename%" EQU "mpirxx" goto skip
+@@ -66,43 +68,42 @@ rem %1 = target (build output) directory
+ rem %2 = binary destination directory
+ rem %3 = configuration (debug/release)
+ rem %4 = library (lib/dll)
+-rem %5 = file name
++rem %5 = file name (mpir | mpirxx)
+ :copyb
+ if "%4" EQU "dll" (
+- copy %1mpir.dll %2mpir.dll > nul 2>&1
+- copy %1mpir.exp %2mpir.exp > nul 2>&1
+- copy %1mpir.lib %2mpir.lib > nul 2>&1
+- if exist %1mpir.pdb (copy %1mpir.pdb %2mpir.pdb > nul 2>&1)
++ copy "%~1\mpir.dll" "%~2\mpir.dll" > nul 2>&1
++ copy "%~1\mpir.exp" "%~2\mpir.exp" > nul 2>&1
++ copy "%~1\mpir.lib" "%~2\mpir.lib" > nul 2>&1
++ if exist "%~1\mpir.pdb" copy "%~1\mpir.pdb" "%~2\mpir.pdb" > nul 2>&1
+ ) else if "%4" EQU "lib" (
+ if "%5" EQU "mpir" (
+- if exist %1mpir.lib (
+- copy %1mpir.lib %2mpir.lib > nul 2>&1
+- if exist %1mpir.pdb (copy %1mpir.pdb %2mpir.pdb > nul 2>&1)
++ if exist "%~1\mpir.lib" (
++ copy "%~1\mpir.lib" "%~2\mpir.lib" > nul 2>&1
++ if exist "%~1\mpir.pdb" copy "%~1\mpir.pdb" "%~2\mpir.pdb" > nul 2>&1
++ ) else (
++ echo "Not Found MPIR at location" "%~1\mpir.lib"
+ )
+ ) else if "%5" EQU "mpirxx" (
+- if exist %1mpirxx.lib (
+- copy %1mpirxx.lib %2mpirxx.lib > nul 2>&1
+- if exist %1mpirxx.pdb (copy %1mpirxx.pdb %2mpirxx.pdb > nul 2>&1)
++ if exist "%~1\mpirxx.lib" (
++ copy "%~1\mpirxx.lib" "%~2\mpirxx.lib" > nul 2>&1
++ if exist "%~1\mpirxx.pdb" copy "%~1\mpirxx.pdb" "%~2\mpirxx.pdb" > nul 2>&1
+ )
+ )
+ ) else (
+- call :seterr & echo ERROR: illegal library type %4 & exit /b %errorlevel%
++ call :seterr & echo ERROR: illegal library type %4 & exit /b %errorlevel%
+ )
+-
+-rem set configuration for the tests
+-call gen_test_config_props %plat% %conf% %vs_ver%
+ exit /b 0
+
+ rem copy headers to final destination directory
+ :copyh
+-copy ..\config.h %1config.h > nul 2>&1
+-copy ..\gmp-mparam.h %1gmp-mparam.h > nul 2>&1
+-copy ..\mpir.h %1mpir.h > nul 2>&1
+-copy ..\mpir.h %1gmp.h > nul 2>&1
+-copy ..\gmp-impl.h %1gmp-impl.h > nul 2>&1
+-copy ..\longlong.h %1longlong.h > nul 2>&1
+-copy ..\mpirxx.h %1mpirxx.h > nul 2>&1
+-copy ..\mpirxx.h %1gmpxx.h > nul 2>&1
++copy "..\config.h" "%~1\config.h" > nul 2>&1
++copy "..\gmp-mparam.h" "%~1\gmp-mparam.h" > nul 2>&1
++copy "..\mpir.h" "%~1\mpir.h" > nul 2>&1
++copy "..\mpir.h" "%~1\gmp.h" > nul 2>&1
++copy "..\gmp-impl.h" "%~1\gmp-impl.h" > nul 2>&1
++copy "..\longlong.h" "%~1\longlong.h" > nul 2>&1
++copy "..\mpirxx.h" "%~1\mpirxx.h" > nul 2>&1
++copy "..\mpirxx.h" "%~1\gmpxx.h" > nul 2>&1
+ exit /b 0
+
+ :seterr
+diff --git a/msvc/prebuild.bat b/msvc/prebuild.bat
+index 243d054f..c1d49c67 100644
+--- a/msvc/prebuild.bat
++++ b/msvc/prebuild.bat
+@@ -1,29 +1,56 @@
+ @echo off
+-rem %1 = mpn directory (generic, x86\... or x86_64\...)
+-rem %2 = platform (win32 or x64)
++rem %1 = mpn directory (generic, x86\... or x86_64\... or arm64\...)
++rem %2 = platform (win32, x64/amd64, or arm64)
+ rem %3 = MSVC version number (e.g. 14)
+
+-if /i "%2" EQU "win32" ((set platform=win32) & (set bdir=x86w\)) else ((set platform=x64) & (set bdir=x86_64w\))
+-set sdir=
+-if /i "%1" EQU "gc" ((set sdir=generic) & (set bdir=generic)) else (set sdir=%bdir%%1)
+-if not exist ..\mpn\%sdir% (call :seterr & echo ERROR: %1 is not supported & exit /b %errorlevel%)
++set "platform="
++set "bdir="
++
++if /i "%2"=="win32" (
++ set "platform=win32"
++ set "bdir=x86w\"
++) else if /i "%2"=="x64" (
++ set "platform=x64"
++ set "bdir=x86_64w\"
++) else if /i "%2"=="arm64" (
++ set "platform=arm64"
++ set "bdir=arm64w\"
++) else (
++ call :seterr & echo ERROR: Unsupported platform "%2" (expected win32, x64/amd64, or arm64) & exit /b %errorlevel%
++)
++
++set "sdir="
++if /i "%1"=="gc" (
++ rem Generic C (portable) implementation
++ set "sdir=generic"
++ set "bdir=generic"
++) else (
++ set "sdir=%bdir%%~1"
++)
++
++if not exist "..\mpn\%sdir%" (
++ call :seterr & echo ERROR: %1 is not supported & exit /b %errorlevel%
++)
+
+ echo building MPIR for %1 (%platform%) from directory mpn\%sdir%
+
+-set cdir=vs%3\cdata\mpn\%sdir%\
+-set sdir=..\mpn\%sdir%\
+-set bdir=..\mpn\%bdir%\
++set "cdir=vs%3\cdata\mpn\%sdir%\"
++set "sdir=..\mpn\%sdir%\"
++set "bdir=..\mpn\%bdir%\"
+
+ call gen_mpir_h %platform%
+ call gen_config_h %cdir%
+
+-if exist %sdir%\gmp-mparam.h (call out_copy_rename %sdir%\gmp-mparam.h ..\ gmp-mparam.h) else (
+- call out_copy_rename %bdir%\gmp-mparam.h ..\ gmp-mparam.h)
++if exist "%sdir%\gmp-mparam.h" (
++ call out_copy_rename "%sdir%\gmp-mparam.h" "..\" "gmp-mparam.h"
++) else (
++ call out_copy_rename "%bdir%\gmp-mparam.h" "..\" "gmp-mparam.h"
++)
+
+-type ..\longlong_pre.h >tmp.h
+-type %bdir%\longlong_inc.h >>tmp.h
+-type ..\longlong_post.h >>tmp.h
+-call out_copy_rename tmp.h ..\ longlong.h
++type "..\longlong_pre.h" > tmp.h
++type "%bdir%\longlong_inc.h" >> tmp.h
++type "..\longlong_post.h" >> tmp.h
++call out_copy_rename tmp.h "..\" "longlong.h"
+ del tmp.h
+
+ exit /b 0
+diff --git a/msvc/vs22/lib_mpir_cxx/lib_mpir_cxx.vcxproj b/msvc/vs22/lib_mpir_cxx/lib_mpir_cxx.vcxproj
+index 0aca0c6e..e4bcf619 100644
+--- a/msvc/vs22/lib_mpir_cxx/lib_mpir_cxx.vcxproj
++++ b/msvc/vs22/lib_mpir_cxx/lib_mpir_cxx.vcxproj
+@@ -1,6 +1,14 @@
+
+
+
++
++ Debug
++ ARM64
++
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -40,11 +48,21 @@
+ false
+ v143
+
++
++ StaticLibrary
++ false
++ v143
++
+
+ StaticLibrary
+ true
+ v143
+
++
++ StaticLibrary
++ true
++ v143
++
+
+
+
+@@ -58,17 +76,27 @@
+
+
+
++
++
++
++
+
+
+
+
++
++
++
++
+
+
+ <_ProjectFileVersion>10.0.21006.1
+ mpirxx
+ mpirxx
+ mpirxx
++ mpirxx
+ mpirxx
++ mpirxx
+
+
+
+@@ -99,6 +127,17 @@ postbuild "$(TargetPath)" 22
+
+
+ cd ..\..\
++postbuild "$(TargetPath)" 22
++
++
++
++
++
++ ..\..\..\
++ NDEBUG;WIN32;_LIB;HAVE_CONFIG_H;_WIN64;%(PreprocessorDefinitions)
++
++
++ cd ..\..\
+ postbuild "$(TargetPath)" 22
+
+
+@@ -110,6 +149,17 @@ postbuild "$(TargetPath)" 22
+
+
+ cd ..\..\
++postbuild "$(TargetPath)" 22
++
++
++
++
++
++ ..\..\..\
++ _DEBUG;WIN32;_LIB;HAVE_CONFIG_H;_WIN64;%(PreprocessorDefinitions)
++
++
++ cd ..\..\
+ postbuild "$(TargetPath)" 22
+
+
+@@ -141,7 +191,7 @@ postbuild "$(TargetPath)" 22
+
+
+
+-
++
+
+-
+-
++
++
+\ No newline at end of file
+diff --git a/msvc/vs22/lib_mpir_gc/lib_mpir_gc.vcxproj b/msvc/vs22/lib_mpir_gc/lib_mpir_gc.vcxproj
+index 350ee110..faf49ac3 100644
+--- a/msvc/vs22/lib_mpir_gc/lib_mpir_gc.vcxproj
++++ b/msvc/vs22/lib_mpir_gc/lib_mpir_gc.vcxproj
+@@ -1,6 +1,14 @@
+
+
+
++
++ Debug
++ ARM64
++
++
++ Release
++ ARM64
++
+
+ Release
+ Win32
+@@ -40,11 +48,21 @@
+ false
+ v143
+
++
++ StaticLibrary
++ false
++ v143
++
+
+ StaticLibrary
+ true
+ v143
+
++
++ StaticLibrary
++ true
++ v143
++
+
+
+
+@@ -58,23 +76,32 @@
+
+
+
++
++
++
++
+
+
+
+
++
++
++
++
+
+
+ <_ProjectFileVersion>10.0.21006.1
+ mpir
+ mpir
+ mpir
++ mpir
+ mpir
++ mpir
+
+
+
+ cd ..\..\
+-prebuild gc Win32 22
+-
++prebuild gc $(Platform) 22
+
+
+ ..\..\..\
+@@ -82,15 +109,13 @@ prebuild gc Win32 22
+
+
+ cd ..\..\
+-postbuild "$(TargetPath)" 22
+-
++postbuild "$(TargetPath)" 22
+
+
+
+
+ cd ..\..\
+-prebuild gc Win32 22
+-
++prebuild gc $(Platform) 22
+
+
+ ..\..\..\
+@@ -98,15 +123,27 @@ prebuild gc Win32 22
+
+
+ cd ..\..\
+-postbuild "$(TargetPath)" 22
+-
++postbuild "$(TargetPath)" 22
+
+
+
+
+ cd ..\..\
+-prebuild gc x64 22
+-
++prebuild gc $(Platform) 22
++
++
++ ..\..\..\
++ NDEBUG;WIN32;_LIB;HAVE_CONFIG_H;_WIN64;%(PreprocessorDefinitions)
++
++
++ cd ..\..\
++postbuild "$(TargetPath)" 22
++
++
++
++
++ cd ..\..\
++prebuild gc $(Platform) 22
+
+
+ ..\..\..\
+@@ -114,15 +151,13 @@ prebuild gc x64 22
+
+
+ cd ..\..\
+-postbuild "$(TargetPath)" 22
+-
++postbuild "$(TargetPath)" 22
+
+
+
+
+ cd ..\..\
+-prebuild gc x64 22
+-
++prebuild gc $(Platform) 22
+
+
+ ..\..\..\
+@@ -130,8 +165,21 @@ prebuild gc x64 22
+
+
+ cd ..\..\
+-postbuild "$(TargetPath)" 22
+-
++postbuild "$(TargetPath)" 22
++
++
++
++
++ cd ..\..\
++prebuild gc $(Platform) 22
++
++
++ ..\..\..\
++ _DEBUG;WIN32;_LIB;HAVE_CONFIG_H;_WIN64;%(PreprocessorDefinitions)
++
++
++ cd ..\..\
++postbuild "$(TargetPath)" 22
+
+
+
+@@ -667,7 +715,7 @@ postbuild "$(TargetPath)" 22
+
+
+
+-
++
+
+-
+-
++
++
+\ No newline at end of file
+diff --git a/msvc/vs22/msbuild.bat b/msvc/vs22/msbuild.bat
+index f119c3e9..36bfe28b 100644
+--- a/msvc/vs22/msbuild.bat
++++ b/msvc/vs22/msbuild.bat
+@@ -1,7 +1,7 @@
+ @echo off
+ rem %1 = architecture
+ rem %2 = library type (LIB|DLL)
+-rem %3 = platform (Win32|x64)
++rem %3 = platform (Win32|x64|ARM64)
+ rem %4 = configuration (Release|Debug)
+ rem %5 = Windows SDK Version
+ rem %6 = build tests (|+tests)
+@@ -31,15 +31,21 @@ if not exist !msb_exe! (
+
+ if "%4" NEQ "" if "%3" NEQ "" if "%2" NEQ "" if "%1" NEQ "" goto cont
+ call :get_architectures -
+-echo usage: msbuild architecture=^<%architectures:|=^|%^> library_type=^ platform=^ configuration=^ [Windows_SDK_Version=^] [+tests]
++echo usage: msbuild architecture=^<%architectures:|=^|%^> library_type=^ platform=^ configuration=^ [Windows_SDK_Version=^] [+tests]
+ goto :eof
+
+ :cont
+ rem example use: msbuild sandybridge_ivybridge dll x64 release
+ if not exist "lib_mpir_%1" (call :get_architectures & call :seterr & echo ERROR: architecture is one of ^(%architectures%^) ^(not %1^) & exit /b %errorlevel%)
+ if /i "%2" EQU "DLL" (set libp=dll) else (if /i "%2" EQU "LIB" (set libp=lib) else ((call :seterr & echo ERROR: library type is "lib" or "dll" ^(not "%2"^) & exit /b %errorlevel%)))
+-if /i "%3" EQU "x64" (set plat=x64) else (if /i "%3" EQU "Win32" (set plat=win32) else (call :seterr & echo ERROR: platform is "Win32" or "x64" ^(not "%3"^) & exit /b %errorlevel%))
+-if /i "%4" EQU "Debug" (set conf=Debug) else (if /i "%4" EQU "Release" (set conf=Release) else (call :seterr & echo ERROR: configuration is "Release" or "Debug" ^(not "%4"^) & exit /b %errorlevel%))
++if /i "%3" EQU "x64" (set plat=x64) else (
++ if /i "%3" EQU "Win32" (set plat=win32) else (
++ if /i "%3" EQU "ARM64" (set plat=ARM64) else (
++ call :seterr & echo ERROR: platform is "Win32", "x64", or "ARM64" ^(not %3^) & exit /b %errorlevel%
++ )
++ )
++)
++if /i "%4" EQU "Debug" (set conf=Debug) else (if /i "%4" EQU "Release" (set conf=Release) else (call :seterr & echo ERROR: configuration is "Release" or "Debug" ^(not %4^) & exit /b %errorlevel%))
+ if /i "%5" NEQ "" if "%5" EQU "+tests" (set run_tests=y) else (set win_sdk=%5)
+ if /i "%6" NEQ "" if "%6" EQU "+tests" (set run_tests=y)
+