File tree 3 files changed +20
-15
lines changed
3 files changed +20
-15
lines changed Original file line number Diff line number Diff line change 10
10
</ItemDefinitionGroup >
11
11
<PropertyGroup >
12
12
<DisableWinRT >true</DisableWinRT >
13
+ <PlatformToolset >v141</PlatformToolset >
14
+ <VCToolsVersion >14.1</VCToolsVersion >
13
15
</PropertyGroup >
14
16
<PropertyGroup Condition =" '$(RootNamespace)'=='ClientTelemetry'" >
15
17
<TargetName >mip_ClientTelemetry</TargetName >
Original file line number Diff line number Diff line change @@ -5,11 +5,10 @@ param (
5
5
[string ]$enableWin10 = " true" ,
6
6
[string ]$enableMini = " true" ,
7
7
[string ]$enableTests = " true" ,
8
- [string ]$customProps = " "
8
+ [string ]$customProps = " " ,
9
+ [string ]$vsDevCmdBat = " C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat"
9
10
)
10
11
11
- $vsDevCmdBat = " C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat"
12
-
13
12
$solution = " Solutions\MSTelemetrySDK.sln"
14
13
$cpuCount = $env: NUMBER_OF_PROCESSORS
15
14
Original file line number Diff line number Diff line change 1
- FROM centos:centos8
2
-
3
- USER 0
4
-
5
- # Package installation
6
- RUN yum update -y
7
-
8
- # # Common packages for linux build environment
9
- RUN yum -y group install "Development Tools"
10
- RUN yum install -y curl libcurl-devel zlib-devel clang python38 pkg-config git bzip2 unzip make wget sudo cmake
11
- RUN yum --enablerepo=powertools install -y zlib-static gmock gtest
12
-
1
+ FROM centos:centos8
2
+
3
+ USER 0
4
+
5
+
6
+ RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-Linux-* &&\
7
+ sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-Linux-*
8
+
9
+ # Package installation
10
+ RUN yum update -y
11
+
12
+ # # Common packages for linux build environment
13
+ RUN yum -y group install "Development Tools"
14
+ RUN yum install -y curl libcurl-devel zlib-devel clang python38 pkg-config git bzip2 unzip make wget sudo cmake
15
+ RUN yum --enablerepo=powertools install -y zlib-static gmock gtest
16
+
13
17
CMD /bin/bash
You can’t perform that action at this time.
0 commit comments