File tree Expand file tree Collapse file tree 8 files changed +36
-6
lines changed
Native/pkg/runtime.native.System.Data.SqlClient.sni Expand file tree Collapse file tree 8 files changed +36
-6
lines changed Original file line number Diff line number Diff line change @@ -173,6 +173,7 @@ ClientBin/
173
173
node_modules /
174
174
* .metaproj
175
175
* .metaproj.tmp
176
+ bin.localpkg /
176
177
177
178
# RIA/Silverlight projects
178
179
Generated_Code /
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if NOT [%ERRORLEVEL%]==[0] exit /b 1
9
9
call %~dp0 build-managed.cmd -FilterToOSGroup=Windows_NT %*
10
10
if NOT [%ERRORLEVEL% ]== [0] exit /b 1
11
11
call %~dp0 build-tests.cmd %*
12
- if NOT [ %ERRORLEVEL% ] == [0] exit /b 1
12
+ exit /b %ERRORLEVEL%
13
13
14
14
:Usage
15
15
echo .
Original file line number Diff line number Diff line change 227
227
<!-- Override CleanAllProjects from dir.traversal.targets and just remove the full BinDir -->
228
228
<Target Name =" CleanAllProjects" >
229
229
<RemoveDir Directories =" $(BinDir)" />
230
+ <!-- Temporarily outside BinDir -->
231
+ <RemoveDir Directories =" $(PackageInstallPath)" />
230
232
</Target >
231
233
232
234
<!-- Hook that can be used to insert custom build tasks to the build process such as setup and/or cleanup tasks -->
Original file line number Diff line number Diff line change 23
23
24
24
__scriptpath=$( cd " $( dirname " $0 " ) " ; pwd -P)
25
25
26
+ __ServerGC=0
27
+
28
+ while : ; do
29
+ if [ $# -le 0 ]; then
30
+ break
31
+ fi
32
+
33
+ lowerI=" $( echo $1 | awk ' {print tolower($0)}' ) "
34
+ case $lowerI in
35
+ useservergc)
36
+ __ServerGC=1
37
+ ;;
38
+ * )
39
+ __UnprocessedBuildArgs=" $__UnprocessedBuildArgs $1 "
40
+ esac
41
+
42
+ shift
43
+ done
44
+
45
+ export CORECLR_SERVER_GC=" $__ServerGC "
46
+
26
47
" $__scriptpath /build-native.sh" $*
27
48
if [ $? -ne 0 ]; then
28
49
exit 1
29
50
fi
30
51
52
+ " $__scriptpath /build-packages.sh" -DisableManagedPackage $*
53
+ if [ $? -ne 0 ]; then
54
+ exit 1
55
+ fi
56
+
31
57
" $__scriptpath /build-managed.sh" $*
32
58
if [ $? -ne 0 ]; then
33
59
exit 1
Original file line number Diff line number Diff line change 33
33
34
34
<!-- Full package version strings that are used in other parts of the build. -->
35
35
<PropertyGroup >
36
- <AppXRunnerVersion >1.0.3-prerelease-00925 -01</AppXRunnerVersion >
36
+ <AppXRunnerVersion >1.0.3-prerelease-00921 -01</AppXRunnerVersion >
37
37
<XunitPerfAnalysisPackageVersion >1.0.0-alpha-build0040</XunitPerfAnalysisPackageVersion >
38
38
</PropertyGroup >
39
39
Original file line number Diff line number Diff line change 67
67
<!-- Enable the analyzers for this repo -->
68
68
<PropertyGroup >
69
69
<EnableDotnetAnalyzers Condition =" '$(EnableDotnetAnalyzers)'==''" >true</EnableDotnetAnalyzers >
70
+ <!-- Temporarily outside BinDir -->
71
+ <PackageInstallPath >$(ProjectDir)bin.localpkg/</PackageInstallPath >
70
72
</PropertyGroup >
71
73
72
74
<!-- Provides package dependency version properties and verification/auto-upgrade configuration -->
84
86
85
87
<PropertyGroup Condition =" '$(BuildTestsAgainstPackages)' == 'true'" >
86
88
<!-- Packaging.targets is only included when full build.cmd is invoked. -->
87
- <PackageInstallPath >$(BinDir)localpkg/</PackageInstallPath >
88
89
</PropertyGroup >
89
90
90
91
<!-- Import packaging props -->
Original file line number Diff line number Diff line change 4
4
"dependencies" : {
5
5
"runtime.win7-x64.runtime.native.System.Data.SqlClient.sni" : " 4.4.0-beta-24627-00" ,
6
6
"runtime.win7-x86.runtime.native.System.Data.SqlClient.sni" : " 4.4.0-beta-24627-00" ,
7
- "runtime.win10-arm64.runtime.native.System.Data.SqlClient.sni" : " 4.3.0-beta-24716 -00"
7
+ "runtime.win10-arm64.runtime.native.System.Data.SqlClient.sni" : " 4.3.0-beta-24722 -00"
8
8
}
9
9
}
10
10
}
Original file line number Diff line number Diff line change 8
8
<Import Project =" $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
9
9
<ItemGroup >
10
10
<Project Include =" *\tests\**\*.builds" >
11
- <BuildAllOSGroups Condition =" '$(OSGroup)' != '' OR '$(FilterToOSGroup)' != '' " >false</BuildAllOSGroups >
12
- <FilterToOSGroup Condition =" '$(_OriginalOSGroup)' == '' AND '$(DontFilterOsGroup)' != 'true' " >$(OSEnvironment)</FilterToOSGroup >
11
+ <BuildAllOSGroups Condition =" '$(OSGroup)' != '' OR '$(FilterToOSGroup)' != ''" >false</BuildAllOSGroups >
12
+ <FilterToOSGroup Condition =" '$(_OriginalOSGroup)' == ''" >$(OSEnvironment)</FilterToOSGroup >
13
13
</Project >
14
14
</ItemGroup >
15
15
You can’t perform that action at this time.
0 commit comments