Skip to content

Commit 018c9ab

Browse files
committed
Added .NET install to Travis CI (#269)
1 parent 307739d commit 018c9ab

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ branches:
2424
only:
2525
- master
2626
- development
27-
before_install:
28-
- chmod +x gradlew
27+
install:
28+
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
29+
- export PATH="$DOTNET_INSTALL_DIR:$PATH"
30+
- dotnet --info
2931
script:
3032
- ./build.sh --quiet verify

src/MyTested.AspNetCore.Mvc.Licensing/LicenseValidator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ private static void Validate(string license, DateTime releaseDate, string projec
135135
};
136136

137137
var parsedSigningData = licenseDetails.GetSignificateData();
138-
138+
139139
var cryptoProvider = new RSACryptoServiceProvider(1024)
140140
{
141141
PersistKeyInCsp = false

0 commit comments

Comments
 (0)