Remove deprecated parts from sources.
authorMikhail Kurinnoi <m.kurinnoi@samsung.com>
Thu, 27 Oct 2022 14:50:15 +0000 (17:50 +0300)
committer이형주/Common Platform Lab(SR)/삼성전자 <leee.lee@samsung.com>
Tue, 1 Nov 2022 11:34:30 +0000 (20:34 +0900)
.travis.yml [deleted file]
Directory.Build.props

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644 (file)
index 3538d2f..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-matrix:
-  allow_failures:
-    - os: osx
-  include:
-    - os: linux
-      dist: bionic
-      env: MATRIX_EVAL="CC=clang-6.0 && CXX=clang++-6.0"
-      addons:  
-        apt:   
-          packages:
-          - llvm-6.0
-          - clang-6.0
-    - os: linux
-      dist: focal
-      env: MATRIX_EVAL="CC=clang-9 && CXX=clang++-9"
-      addons:  
-        apt:   
-          packages:
-          - llvm-9     
-          - clang-9
-    - os: osx
-      osx_image: xcode12
-
-language: cpp
-
-branches:
-  except:
-  - /[0-9]+\.[0-9]+\.[0-9]+-[0-9]+/
-
-git:
-  depth: false
-
-env:
-  global:
-  - RELEASE_BRANCH=master
-
-script:
-  - eval "${MATRIX_EVAL}"
-  - mkdir build && cd build
-  - |
-      cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$PWD/../bin
-      cmake --build . --target install
-  - cd ..
-
-before_deploy:
-  - |
-      if [ "$TRAVIS_BRANCH" = "$RELEASE_BRANCH" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then
-
-        if [[ -z "$TRAVIS_TAG" ]]; then
-          export TRAVIS_TAG="$(awk '/Version:/ {print $2}' ./packaging/netcoredbg.spec)-$(git rev-list HEAD --count)"
-          git config --local user.name "Travis"
-          git config --local user.email "travis@travis-ci.org"
-          git tag "$TRAVIS_TAG" -a -m "[Autogenerated] This is the latest version pushed to the ${TRAVIS_BRANCH} branch."
-          git push https://${GITHUB_API_KEY}@github.com/${TRAVIS_REPO_SLUG} --tags >/dev/null 2>&1
-        fi
-
-        # Prepare files for deployment
-        mv bin netcoredbg
-        if [ ${TRAVIS_OS_NAME} = 'linux' ]; then
-          tar cfz netcoredbg-${TRAVIS_OS_NAME}-${TRAVIS_DIST}-${TRAVIS_CPU_ARCH}.tar.gz ./netcoredbg/*
-        else
-          tar cfz netcoredbg-${TRAVIS_OS_NAME}.tar.gz ./netcoredbg/*
-        fi
-      fi
-
-deploy:
-  provider: releases
-  api_key: $GITHUB_API_KEY
-  file:
-    - "*.tar.gz"
-  file_glob: true
-  skip_cleanup: true
-  overwrite: true
-  on:
-    repo: $TRAVIS_REPO_SLUG
-    branch: $RELEASE_BRANCH
-
index 88cbaad350a9ae0067a5908d8643b5400137c3a7..fc8ed2f70d90b68ad935334883e92fc2b0f0c757 100644 (file)
@@ -5,7 +5,4 @@
   <PropertyGroup Condition="$(MSBuildProjectName.Contains('corguids'))">
     <BaseIntermediateOutputPath>obj_corguids</BaseIntermediateOutputPath>
   </PropertyGroup>
-  <PropertyGroup Condition="$(MSBuildProjectName.Contains('symbolreader_dll'))">
-    <BaseIntermediateOutputPath>obj_symbolreader_dll</BaseIntermediateOutputPath>
-  </PropertyGroup>
 </Project>