You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .travis.yml
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
language: csharp
2
-
dotnet: 1.0.0-preview2-003131
2
+
dotnet: 1.0.4
3
3
os: linux
4
4
dist: trusty
5
5
mono: latest
@@ -17,6 +17,8 @@ before_install:
17
17
- ls /usr/lib/mono/4.5/MSBuild
18
18
19
19
before_script:
20
+
# https://github.com/dotnet/sdk/issues/335
21
+
- if test "$TRAVIS_OS_NAME" == "osx"; then export FrameworkPathOverride=/Library/Frameworks/Mono.framework/Versions/Current/lib/mono/4.5/; else export FrameworkPathOverride=/usr/lib/mono/4.5/; fi
20
22
- mkdir prism/bin
21
23
- export PATH=$PATH:$PWD/prism/bin/
22
24
- ./prism/prism.sh
@@ -25,7 +27,7 @@ before_script:
25
27
script:
26
28
- dotnet restore
27
29
- dotnet build ./src/SendGrid -c Release
28
-
- dotnet test ./tests/SendGrid.Tests -c Release -f netcoreapp1.0
30
+
- dotnet test ./tests/SendGrid.Tests/SendGrid.Tests.csproj -c Release -f netcoreapp1.0
0 commit comments