File tree Expand file tree Collapse file tree 4 files changed +25
-7
lines changed
Expand file tree Collapse file tree 4 files changed +25
-7
lines changed Original file line number Diff line number Diff line change 11version : 1.0.{build}
22skip_branch_with_pr : true
3- image : Visual Studio 2019
3+ image : Visual Studio 2022
44build_script :
55 - cmd : dotnet build
Original file line number Diff line number Diff line change 11version : 2
22updates :
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments