This repository was archived by the owner on May 1, 2024. It is now read-only.
File tree 2 files changed +21
-22
lines changed
2 files changed +21
-22
lines changed Original file line number Diff line number Diff line change @@ -1271,27 +1271,26 @@ Task ("libs-windows-projects")
1271
1271
│ ├── Xamarin.Auth.pdb
1272
1272
│ └── Xamarin.Auth.pri
1273
1273
*/
1274
- // solution_or_project = "./source/Core/Xamarin.Auth.UniversalWindowsPlatform/Xamarin.Auth.UniversalWindowsPlatform.csproj";
1275
- // if (is_using_custom_defines == true)
1276
- // {
1277
- // define = custom_defines;
1278
- // }
1279
- // BuildLoop
1280
- // (
1281
- // solution_or_project,
1282
- // new MSBuildSettings
1283
- // {
1284
- // ToolVersion = MSBuildToolVersion.VS2015,
1285
- // }.WithProperty("XamarinAuthCustomPreprocessorConstantsDefines", define)
1286
- // );
1287
- //BuildLoop
1288
- //(
1289
- // solution_or_project,
1290
- // new MSBuildSettings
1291
- // {
1292
- // ToolVersion = MSBuildToolVersion.VS2017,
1293
- // }.WithProperty("DefineConstants", define)
1294
- //);
1274
+ if ( is_using_custom_defines == true )
1275
+ {
1276
+ define = custom_defines ;
1277
+ }
1278
+ BuildLoop
1279
+ (
1280
+ solution_or_project ,
1281
+ new MSBuildSettings
1282
+ {
1283
+ ToolVersion = MSBuildToolVersion . VS2015 ,
1284
+ } . WithProperty ( "XamarinAuthCustomPreprocessorConstantsDefines" , define )
1285
+ ) ;
1286
+ BuildLoop
1287
+ (
1288
+ solution_or_project ,
1289
+ new MSBuildSettings
1290
+ {
1291
+ ToolVersion = MSBuildToolVersion . VS2017 ,
1292
+ } . WithProperty ( "DefineConstants" , define )
1293
+ ) ;
1295
1294
1296
1295
CopyFiles
1297
1296
(
Original file line number Diff line number Diff line change 68
68
# Restore tools from NuGet.
69
69
pushd " $TOOLS_DIR " > /dev/null
70
70
if [ ! -f " $PACKAGES_CONFIG_MD5 " ] || [ " $( cat " $PACKAGES_CONFIG_MD5 " | sed ' s/\r$//' ) " != " $( $MD5_EXE " $PACKAGES_CONFIG " | awk ' { print $1 }' ) " ]; then
71
- find . -type d ! -name . | xargs rm -rf
71
+ find . -type d ! -name . ! -name ' Cake.Bakery ' | xargs rm -rf
72
72
fi
73
73
74
74
mono " $NUGET_EXE " install -ExcludeVersion
You can’t perform that action at this time.
0 commit comments