Revert "Change Version of PackageReference to latest always"
authorWonYoung Choi <wy80.choi@samsung.com>
Thu, 20 Jul 2017 21:59:02 +0000 (06:59 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Thu, 20 Jul 2017 21:59:02 +0000 (06:59 +0900)
This reverts commit 59d0d09ecc85784d37b6f6548eda772f756180c9.

Tools/dotnet-build.sh

index bd967b4..b9e636f 100755 (executable)
@@ -52,21 +52,6 @@ run_dotnet() {
   exit_on_error $?
 }
 
-update_version_to_asterisk() {
-  local PROJS=""
-  if [[ $PROJECT_TYPE == "csproj" ]]; then
-    PROJS=$PROJECT
-  elif [[ $PROJECT_TYPE == "dir" ]]; then
-    PROJS=$PROJECT/*.csproj
-  elif [[ $PROJECT_TYPE == "sln" ]]; then
-    PROJS=$(find . -name "*.csproj")
-  fi
-  for p in $PROJS; do
-    xmlstarlet ed -L -u "//PackageReference/@Version" --value "*" $p
-    xmlstarlet ed -L -u "//PackageReference/@version" --value "*" $p
-  done
-}
-
 build_project() {
   local CSPROJ=$1; shift
 
@@ -80,7 +65,6 @@ build_project() {
 
 cmd_restore() {
   if $USE_DOTNET_CLI; then
-    update_version_to_asterisk # update PackageReference version to * in .csproj
     local OPTS=""
     [ -n "$SOURCE" ] && OPTS="$OPTS -s $SOURCE"
     run_dotnet restore $PROJECT $OPTS $@