Skip to content

Commit ae353bf

Browse files
authored
Merge pull request #39 from twpol/feature/net6
build: Upgrade to .NET 6
2 parents 658e220 + fbef2ca commit ae353bf

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version: 1.0.{build}
22
skip_branch_with_pr: true
3-
image: Visual Studio 2019
3+
image: Visual Studio 2022
44
build_script:
55
- cmd: dotnet build

.github/dependabot.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
version: 2
22
updates:
3-
- package-ecosystem: nuget
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
open-pull-requests-limit: 10
3+
- package-ecosystem: nuget
4+
directory: /
5+
schedule:
6+
interval: weekly

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
name: Build
6+
runs-on: windows-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v3
10+
- name: Setup
11+
uses: actions/setup-dotnet@v2
12+
with:
13+
dotnet-version: 6.0.x
14+
- name: Restore
15+
run: dotnet restore
16+
- name: Build
17+
run: dotnet build --no-restore
18+
- name: Test
19+
run: dotnet test --no-build --verbosity normal

Open Rails Code Bot.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net6.0</TargetFramework>
66
<RootNamespace>Open_Rails_Code_Bot</RootNamespace>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)