File tree Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version : 2
7
+ updates :
8
+
9
+ # Maintain dependencies for GitHub Actions
10
+ - package-ecosystem : " github-actions"
11
+ directory : " /"
12
+ schedule :
13
+ interval : " weekly"
Original file line number Diff line number Diff line change
1
+ name : CI_build
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : windows-2019
9
+
10
+ steps :
11
+ - name : Checkout repo
12
+ uses : actions/checkout@v3
13
+
14
+ - name : Add msbuild to PATH
15
+ uses : microsoft/setup-msbuild@v1
16
+
17
+ - name : MSBuild of plugin dll
18
+ working-directory : ./Demo Plugin/
19
+ run : msbuild NppManagedPluginDemo.sln /m /verbosity:detailed
Original file line number Diff line number Diff line change
1
+ version : 0.95.0.{build}
2
+ image : Visual Studio 2019
3
+
4
+
5
+ build_script :
6
+ - cd "%APPVEYOR_BUILD_FOLDER%"\Demo Plugin\
7
+ - msbuild NppManagedPluginDemo.sln /m /verbosity:detailed /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
You can’t perform that action at this time.
0 commit comments