csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
908 B
21 lines
908 B
image: Visual Studio 2017
|
|
init:
|
|
- git config --global core.autocrlf true
|
|
install:
|
|
# Download .NET Core SDK 5.0.100 and add to PATH
|
|
- ps: $urlCurrent = "https://dotnetcli.azureedge.net/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-x64.zip"
|
|
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
|
|
- ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
|
|
- ps: $tempFileCurrent = [System.IO.Path]::GetTempFileName()
|
|
- ps: (New-Object System.Net.WebClient).DownloadFile($urlCurrent, $tempFileCurrent)
|
|
- ps: Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory($tempFileCurrent, $env:DOTNET_INSTALL_DIR)
|
|
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
|
|
build_script:
|
|
- build.cmd Test quick
|
|
test: off
|
|
deploy: off
|
|
shallow_clone: true
|
|
clone_depth: 1
|
|
environment:
|
|
DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
|
|