Skip to content

Commit 2cdfe75

Browse files
authored
Windows OS version info and other misc updates.
-> Added following fields in post requests - os_platform_version. - Highest Universal API Contract Version available on machine. os_build_number - Build number of the Windows OS Version. -> Added a test app for local debugging -> Tools/packages Version Updates
1 parent d8f3194 commit 2cdfe75

40 files changed

+1824
-41
lines changed

BranchSDK-Samples/TestBed-Basic/TestBed-Basic.vcxproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,32 @@
2424
<Keyword>Win32Proj</Keyword>
2525
<ProjectGuid>{f3a5bf87-3e17-4fb9-9002-86a5aba3ab9c}</ProjectGuid>
2626
<RootNamespace>TestBedBasic</RootNamespace>
27-
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
27+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
2828
</PropertyGroup>
2929
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
3030
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3131
<ConfigurationType>Application</ConfigurationType>
3232
<UseDebugLibraries>true</UseDebugLibraries>
33-
<PlatformToolset>v142</PlatformToolset>
33+
<PlatformToolset>v143</PlatformToolset>
3434
<CharacterSet>Unicode</CharacterSet>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
3737
<ConfigurationType>Application</ConfigurationType>
3838
<UseDebugLibraries>false</UseDebugLibraries>
39-
<PlatformToolset>v142</PlatformToolset>
39+
<PlatformToolset>v143</PlatformToolset>
4040
<WholeProgramOptimization>true</WholeProgramOptimization>
4141
<CharacterSet>Unicode</CharacterSet>
4242
</PropertyGroup>
4343
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4444
<ConfigurationType>Application</ConfigurationType>
4545
<UseDebugLibraries>true</UseDebugLibraries>
46-
<PlatformToolset>v142</PlatformToolset>
46+
<PlatformToolset>v143</PlatformToolset>
4747
<CharacterSet>Unicode</CharacterSet>
4848
</PropertyGroup>
4949
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5050
<ConfigurationType>Application</ConfigurationType>
5151
<UseDebugLibraries>false</UseDebugLibraries>
52-
<PlatformToolset>v142</PlatformToolset>
52+
<PlatformToolset>v143</PlatformToolset>
5353
<WholeProgramOptimization>true</WholeProgramOptimization>
5454
<CharacterSet>Unicode</CharacterSet>
5555
</PropertyGroup>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
//{{NO_DEPENDENCIES}}
2+
// Microsoft Visual C++ generated include file.
3+
// Used by TestBed-Local.rc
4+
//
5+
#define IDC_MYICON 2
6+
#define IDD_TESTBEDLOCAL_DIALOG 102
7+
#define IDS_APP_TITLE 103
8+
#define IDD_ABOUTBOX 103
9+
#define IDM_ABOUT 104
10+
#define IDM_EXIT 105
11+
#define IDI_TESTBEDLOCAL 107
12+
#define IDI_SMALL 108
13+
#define IDC_TESTBEDLOCAL 109
14+
#define IDC_TESTBED 109
15+
#define IDR_MAINFRAME 128
16+
#define IDC_STATIC -1
17+
18+
// Next default values for new objects
19+
//
20+
#ifdef APSTUDIO_INVOKED
21+
#ifndef APSTUDIO_READONLY_SYMBOLS
22+
#define _APS_NO_MFC 1
23+
#define _APS_NEXT_RESOURCE_VALUE 129
24+
#define _APS_NEXT_COMMAND_VALUE 32771
25+
#define _APS_NEXT_CONTROL_VALUE 1000
26+
#define _APS_NEXT_SYMED_VALUE 110
27+
#endif
28+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#pragma once
2+
3+
#include "resource.h"
264 KB
Binary file not shown.
8.92 KB
Binary file not shown.
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.12.35707.178 d17.12
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestBed-Local", "TestBed-Local.vcxproj", "{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}"
7+
ProjectSection(ProjectDependencies) = postProject
8+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4} = {4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}
9+
EndProjectSection
10+
EndProject
11+
Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "TestBedLocalPackage", "TestBedLocalPackage\TestBedLocalPackage.wapproj", "{632B837A-0D8A-449A-B2C3-6A7297C965C4}"
12+
EndProject
13+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BranchIO", "..\..\BranchSDK\Visual Studio\BranchIO\BranchIO.vcxproj", "{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}"
14+
EndProject
15+
Global
16+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
17+
Debug|Any CPU = Debug|Any CPU
18+
Debug|ARM = Debug|ARM
19+
Debug|ARM64 = Debug|ARM64
20+
Debug|x64 = Debug|x64
21+
Debug|x86 = Debug|x86
22+
Release|Any CPU = Release|Any CPU
23+
Release|ARM = Release|ARM
24+
Release|ARM64 = Release|ARM64
25+
Release|x64 = Release|x64
26+
Release|x86 = Release|x86
27+
EndGlobalSection
28+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
29+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Debug|Any CPU.ActiveCfg = Debug|Win32
30+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Debug|ARM.ActiveCfg = Debug|Win32
31+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Debug|ARM64.ActiveCfg = Debug|Win32
32+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Debug|x64.ActiveCfg = Debug|x64
33+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Debug|x64.Build.0 = Debug|x64
34+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Debug|x86.ActiveCfg = Debug|Win32
35+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Debug|x86.Build.0 = Debug|Win32
36+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Release|Any CPU.ActiveCfg = Release|Win32
37+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Release|ARM.ActiveCfg = Release|Win32
38+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Release|ARM64.ActiveCfg = Release|Win32
39+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Release|x64.ActiveCfg = Release|x64
40+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Release|x64.Build.0 = Release|x64
41+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Release|x86.ActiveCfg = Release|Win32
42+
{A0F2D1C6-88AD-4FBD-AF84-044B27F61AC9}.Release|x86.Build.0 = Release|Win32
43+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
44+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|Any CPU.Build.0 = Debug|Any CPU
45+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
46+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|ARM.ActiveCfg = Debug|ARM
47+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|ARM.Build.0 = Debug|ARM
48+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|ARM.Deploy.0 = Debug|ARM
49+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|ARM64.ActiveCfg = Debug|ARM64
50+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|ARM64.Build.0 = Debug|ARM64
51+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|ARM64.Deploy.0 = Debug|ARM64
52+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|x64.ActiveCfg = Debug|x64
53+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|x64.Build.0 = Debug|x64
54+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|x64.Deploy.0 = Debug|x64
55+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|x86.ActiveCfg = Debug|x86
56+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|x86.Build.0 = Debug|x86
57+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Debug|x86.Deploy.0 = Debug|x86
58+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|Any CPU.ActiveCfg = Release|Any CPU
59+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|Any CPU.Build.0 = Release|Any CPU
60+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|Any CPU.Deploy.0 = Release|Any CPU
61+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|ARM.ActiveCfg = Release|ARM
62+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|ARM.Build.0 = Release|ARM
63+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|ARM.Deploy.0 = Release|ARM
64+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|ARM64.ActiveCfg = Release|ARM64
65+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|ARM64.Build.0 = Release|ARM64
66+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|ARM64.Deploy.0 = Release|ARM64
67+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|x64.ActiveCfg = Release|x64
68+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|x64.Build.0 = Release|x64
69+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|x64.Deploy.0 = Release|x64
70+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|x86.ActiveCfg = Release|x86
71+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|x86.Build.0 = Release|x86
72+
{632B837A-0D8A-449A-B2C3-6A7297C965C4}.Release|x86.Deploy.0 = Release|x86
73+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Debug|Any CPU.ActiveCfg = Debug|x64
74+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Debug|Any CPU.Build.0 = Debug|x64
75+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Debug|ARM.ActiveCfg = Debug|x64
76+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Debug|ARM.Build.0 = Debug|x64
77+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Debug|ARM64.ActiveCfg = Debug|x64
78+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Debug|ARM64.Build.0 = Debug|x64
79+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Debug|x64.ActiveCfg = DebugMD|x64
80+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Debug|x64.Build.0 = DebugMD|x64
81+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Debug|x86.ActiveCfg = Debug|Win32
82+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Debug|x86.Build.0 = Debug|Win32
83+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Release|Any CPU.ActiveCfg = Release|x64
84+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Release|Any CPU.Build.0 = Release|x64
85+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Release|ARM.ActiveCfg = Release|x64
86+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Release|ARM.Build.0 = Release|x64
87+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Release|ARM64.ActiveCfg = Release|x64
88+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Release|ARM64.Build.0 = Release|x64
89+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Release|x64.ActiveCfg = Release|x64
90+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Release|x64.Build.0 = Release|x64
91+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Release|x86.ActiveCfg = Release|Win32
92+
{4F51DC46-1A0E-467D-8CA4-AF37E134C0A4}.Release|x86.Build.0 = Release|Win32
93+
EndGlobalSection
94+
GlobalSection(SolutionProperties) = preSolution
95+
HideSolutionNode = FALSE
96+
EndGlobalSection
97+
GlobalSection(ExtensibilityGlobals) = postSolution
98+
SolutionGuid = {9AD37D5B-1968-4EAB-9163-320CEEC7885E}
99+
EndGlobalSection
100+
EndGlobal

0 commit comments

Comments
 (0)