Skip to content

Commit 62df1d0

Browse files
authored
Merge pull request #1269 from dazinator/feature/netstandard
#1175 - NetStandard
2 parents dbd80e1 + 4a5356b commit 62df1d0

File tree

166 files changed

+2304
-1331
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+2304
-1331
lines changed

.gitignore

+4-2
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,10 @@ src/GitVersionTfsTask/*.js
110110
####################
111111
# Cake
112112
####################
113-
/tools
113+
tools/*
114+
!tools/packages.config
114115
/*.zip
115116
GitVersion.CommandLine/*/
116117

117-
releaseArtifacts
118+
releaseArtifacts
119+
/ILMergeTemp

.travis.yml

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
language: csharp
2-
sudo: false
2+
sudo: required
3+
dist: trusty
4+
dotnet: 2.1.105
35
mono:
46
- latest
57
os:
68
- linux
79
- osx
810
before_install:
9-
- git fetch --unshallow # Travis always does a shallow clone, but GitVersion needs the full history including branches and tags
11+
- git fetch --unshallow # Travis always does a shallow clone, but GitVersion needs the full history including branches and tags
1012
script:
11-
- ./build.sh
12-
cache:
13-
directories:
14-
- src/packages
15-
- tools
13+
- ./build.sh -v Diagnostic
14+
env:
15+
global:
16+
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
17+
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
image: Visual Studio 2017
12
install:
23
npm i -g tfx-cli
34

0 commit comments

Comments
 (0)