This repository has been archived by the owner on Apr 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/0.9.0' into master
- Loading branch information
Showing
46 changed files
with
2,311 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#---------------------------------# | ||
# Build Image # | ||
#---------------------------------# | ||
image: Visual Studio 2019 | ||
|
||
#---------------------------------# | ||
# Build Script # | ||
#---------------------------------# | ||
install: | ||
# Update to latest NuGet version since we require 5.3.0 for embedded icon | ||
- ps: nuget update -self | ||
|
||
build_script: | ||
- ps: .\build.ps1 -Target AppVeyor | ||
|
||
# Tests | ||
test: off | ||
|
||
#---------------------------------# | ||
# Branches to build # | ||
#---------------------------------# | ||
branches: | ||
# Whitelist | ||
only: | ||
- develop | ||
- master | ||
- /release/.*/ | ||
- /hotfix/.*/ | ||
|
||
#---------------------------------# | ||
# Build Cache # | ||
#---------------------------------# | ||
cache: | ||
- tools -> recipe.cake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
############################################################################### | ||
# Set default behavior to automatically normalize line endings. | ||
############################################################################### | ||
* text=auto | ||
|
||
############################################################################### | ||
# Set default behavior for command prompt diff. | ||
# | ||
# This is need for earlier builds of msysgit that does not have it on by | ||
# default for csharp files. | ||
# Note: This is only used by command line | ||
############################################################################### | ||
#*.cs diff=csharp | ||
|
||
############################################################################### | ||
# Set the merge driver for project and solution files | ||
# | ||
# Merging from the command prompt will add diff markers to the files if there | ||
# are conflicts (Merging from VS is not affected by the settings below, in VS | ||
# the diff markers are never inserted). Diff markers may cause the following | ||
# file extensions to fail to load in VS. An alternative would be to treat | ||
# these files as binary and thus will always conflict and require user | ||
# intervention with every merge. To do so, just uncomment the entries below | ||
############################################################################### | ||
#*.sln merge=binary | ||
#*.csproj merge=binary | ||
#*.vbproj merge=binary | ||
#*.vcxproj merge=binary | ||
#*.vcproj merge=binary | ||
#*.dbproj merge=binary | ||
#*.fsproj merge=binary | ||
#*.lsproj merge=binary | ||
#*.wixproj merge=binary | ||
#*.modelproj merge=binary | ||
#*.sqlproj merge=binary | ||
#*.wwaproj merge=binary | ||
|
||
############################################################################### | ||
# behavior for image files | ||
# | ||
# image files are treated as binary by default. | ||
############################################################################### | ||
#*.jpg binary | ||
#*.png binary | ||
#*.gif binary | ||
|
||
############################################################################### | ||
# diff behavior for common document formats | ||
# | ||
# Convert binary document formats to text before diffing them. This feature | ||
# is only available from the command line. Turn it on by uncommenting the | ||
# entries below. | ||
############################################################################### | ||
#*.doc diff=astextplain | ||
#*.DOC diff=astextplain | ||
#*.docx diff=astextplain | ||
#*.DOCX diff=astextplain | ||
#*.dot diff=astextplain | ||
#*.DOT diff=astextplain | ||
#*.pdf diff=astextplain | ||
#*.PDF diff=astextplain | ||
#*.rtf diff=astextplain | ||
#*.RTF diff=astextplain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These owners will be the default owners for everything in the repo and | ||
# will be requested for review when someone opens a pull request. | ||
* @pascalberger |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Build and tests | ||
on: [push, pull_request] | ||
jobs: | ||
# Build | ||
Build: | ||
name: Build | ||
runs-on: windows-latest | ||
steps: | ||
- name: Get the sources | ||
uses: actions/checkout@v2 | ||
- name: Fetch all tags and branches | ||
run: git fetch --prune --unshallow | ||
- name: Build | ||
run: .\build.ps1 | ||
shell: powershell | ||
- name: Publish NuGet package as build artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: NuGet Package | ||
path: ./BuildArtifacts/Packages/NuGet/ | ||
# Integration Tests Windows (.NET Framework) | ||
Test_Windows_DotNetFramework: | ||
name: Integration Tests Windows (.NET Framework) | ||
needs: Build | ||
runs-on: windows-latest | ||
steps: | ||
- name: Get the sources | ||
uses: actions/checkout@v2 | ||
- name: Download build artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: NuGet Package | ||
path: ./BuildArtifacts/Packages/NuGet | ||
- name: Run integration tests | ||
run: ./build.ps1 -verbosity diagnostic | ||
working-directory: ./tests/integration/ | ||
shell: powershell | ||
# Integration Tests Windows (.NET Core tool) | ||
Test_Windows_DotNetCoreTool: | ||
name: Integration Tests Windows (.NET Core tool) | ||
needs: Build | ||
runs-on: windows-latest | ||
steps: | ||
- name: Get the sources | ||
uses: actions/checkout@v2 | ||
- name: Download build artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: NuGet Package | ||
path: ./BuildArtifacts/Packages/NuGet | ||
- name: Restore .NET Core tool | ||
run: dotnet tool restore | ||
working-directory: ./tests/integration/ | ||
shell: powershell | ||
- name: Run integration tests | ||
run: dotnet cake | ||
working-directory: ./tests/integration/ | ||
shell: powershell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Contribution Guidelines | ||
|
||
This repository uses [GitFlow] with default configuration. | ||
Development is happening on `develop` branch. | ||
|
||
To contribute: | ||
|
||
* Fork this repository. | ||
* Create a feature branch from `develop`. | ||
* Implement your changes. | ||
* Push your feature branch. | ||
* Create a pull request. | ||
|
||
## Build | ||
|
||
To build this package we are using Cake. | ||
|
||
On Windows PowerShell run: | ||
|
||
```powershell | ||
./build | ||
``` | ||
|
||
On OSX/Linux run: | ||
|
||
```bash | ||
./build.sh | ||
``` | ||
|
||
## Release | ||
|
||
See [Cake.Recipe documentation] how to create a new release of this addin. | ||
|
||
[GitFlow]: (http://nvie.com/posts/a-successful-git-branching-model/) | ||
[Cake.Recipe documentation]: https://cake-contrib.github.io/Cake.Recipe/docs/usage/creating-release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
issue-labels-include: | ||
- Breaking change | ||
- Feature | ||
- Bug | ||
- Improvement | ||
- Documentation | ||
issue-labels-exclude: | ||
- Build | ||
issue-labels-alias: | ||
- name: Documentation | ||
header: Documentation | ||
plural: Documentation |
Oops, something went wrong.