Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit c9e3d4c

Browse files
committed
Fix build
1 parent d4473e8 commit c9e3d4c

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

Diff for: .github/workflows/main.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build:
10-
runs-on: windows-latest # Use Ubuntu in v5.0
10+
runs-on: windows-latest
1111

1212
env:
1313
DOTNET_NOLOGO: true
@@ -18,15 +18,9 @@ jobs:
1818
with:
1919
fetch-depth: 0 # all
2020

21-
- name: Setup .NET 2.0 # Remove in v5.0
22-
uses: actions/setup-dotnet@v1
23-
with:
24-
dotnet-version: 2.0.x
25-
26-
- name: Setup .NET 8.0
27-
uses: actions/setup-dotnet@v1
28-
with:
29-
dotnet-version: 8.0.x
21+
- name: Install SQL CE 📅
22+
shell: powershell
23+
run: ./install-sql-ce.ps1
3024

3125
- name: Install GitVersion
3226
uses: gittools/actions/gitversion/setup@v0

Diff for: install-sql-ce.ps1

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
$url = "https://download.microsoft.com/download/F/F/D/FFDF76E3-9E55-41DA-A750-1798B971936C/ENU/SSCERuntime_x64-ENU.exe"
2+
$WebClient = New-Object System.Net.WebClient
3+
$WebClient.DownloadFile($url ,"$env:TEMP/SSCERuntime_x64-ENU.exe");
4+
5+
Start-Process "$env:TEMP/SSCERuntime_x64-ENU.exe" -argumentlist "/i /quiet" -wait

0 commit comments

Comments
 (0)