Skip to content

Commit 6e41b24

Browse files
author
Justin
committed
Removed .NET 4.5 support.
Removed tests for now. Updated projects and builds to work with .NET Core / Standard 2.0.
1 parent 2b3d82c commit 6e41b24

15 files changed

Lines changed: 29 additions & 1049 deletions

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
version: '{build}'
22

3+
image: Visual Studio 2017 Preview
4+
35
pull_requests:
46
do_not_increment_build_number: true
57

@@ -20,7 +22,7 @@ artifacts:
2022
name: NuGet
2123

2224
cache:
23-
- '%LOCALAPPDATA%\Microsoft\dotnet'
25+
- '%APPVEYOR_BUILD_FOLDER%\dotnet-sdk.exe'
2426

2527
deploy:
2628
- provider: NuGet

default.ps1

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,17 @@ task clean {
1515
}
1616

1717
task init {
18-
exec { .\build\dotnet\install.ps1 --Version "1.0.3" | Out-Default }
18+
$isDotNetDownloaded = Test-Path dotnet-sdk.exe
19+
20+
if($isDotNetDownloaded -eq $false) {
21+
Write-Output 'Did not find dotnet-sdk.exe. Starting download.'
22+
exec { curl -O dotnet-sdk.exe https://dotnetcli.azureedge.net/dotnet/Sdk/2.0.0/dotnet-sdk-2.0.0-win-x64.exe | Out-Default }
23+
} else {
24+
Write-Output 'Found dotnet-sdk.exe. Skipping download.'
25+
}
26+
27+
Write-Output 'Installing dotnet-sdk.exe.'
28+
exec { .\dotnet-sdk.exe /install /quiet /norestart /log install.log | Out-Default }
1929
exec { dotnet --version | Out-Default }
2030
}
2131

src/NuGet.config

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/SteamWebAPI2.Net45/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)