Skip to content

Commit 19348b8

Browse files
GitHubSync update
1 parent b1ef907 commit 19348b8

13 files changed

+49
-51
lines changed

.config/dotnet-tools.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "3.2.0",
6+
"version": "4.0.0",
77
"commands": [
88
"dotnet-cake"
99
]

.github/ISSUE_TEMPLATE.md

-34
This file was deleted.

.github/ISSUE_TEMPLATE/---support-request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ assignees: ''
99

1010
---
1111

12-
ONLY active OSS contributors OR people who buy me a coffee can ask questions here. If you don't do either of these things - DO NOT FILE HERE OR I WILL SIMPLY REMOVE YOUR ACCOUNT :)
12+
ONLY active OSS contributors OR people who buy us a coffee can ask questions here. If you don't do either of these things - DO NOT FILE HERE :)
1313

1414
Give as much details as humanly possible if you want any sort of answer!
1515

.github/ISSUE_TEMPLATE/--bug.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,7 @@ assignees: ''
1212
## Please check all of the platforms you are having the issue on (if platform is not listed, it is not supported)
1313

1414
- [ ] WPF
15-
- [ ] UWP
16-
- [ ] iOS
17-
- [ ] Android
18-
- [ ] .NET Standard
15+
- [ ] Blazor WASM
1916
- [ ] .NET Core
2017

2118
## Component

.github/ISSUE_TEMPLATE/--thank-you.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: "❤️Thank You"
3-
about: Just want to say thank you, this is the guy to do it in
3+
about: Just want to say thank you, this is the one to do it in
44
title: Thank You
55
labels: ''
66
assignees: ''

.github/PULL_REQUEST_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ None
2727
### PR Checklist ###
2828

2929
- [ ] I have included examples or tests
30-
- [ ] I have updated the change log
31-
- [ ] I am listed in the CONTRIBUTORS file
30+
- [ ] I have updated the change log or created a GitHub ticket with the change
31+
- [ ] I am listed in the CONTRIBUTORS file (if it exists)
3232
- [ ] Changes adhere to coding standard
3333
- [ ] I checked the licenses of Third Party software and discussed new dependencies with at least 1 other team member

.github/workflows/build-and-test.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Build and test
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
- master
8+
pull_request:
9+
10+
#permissions:
11+
#pull-requests: write
12+
#contents: write
13+
14+
jobs:
15+
build-and-test:
16+
runs-on: windows-latest # Required for some (WPF) projects
17+
18+
steps:
19+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
20+
id: checkout
21+
with:
22+
fetch-depth: 0
23+
24+
- name: Setup .NET Core
25+
id: setup-dotnet
26+
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0
27+
with:
28+
dotnet-version: '8.0.x'
29+
30+
- name: Cake Action
31+
id: cake-action
32+
uses: cake-build/cake-action@a6eb054329257c9e70a6c6bf01747ad6e1d9d52b #v1.4.1
33+
with:
34+
target: BuildAndTest
35+
arguments: |
36+
IsCiBuild: true

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ build.cakeoverrides
132132
TestResults
133133
.vs/
134134
.sonarqube/
135-
.github/
136135
BundleArtifacts/
137136

138137
# docker / tye

deployment/cake/docker-tasks.cake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#l "docker-variables.cake"
22
#l "lib-octopusdeploy.cake"
33

4-
#addin "nuget:?package=Cake.Docker&version=1.2.3"
4+
#addin "nuget:?package=Cake.Docker&version=1.3.0"
55

66
//-------------------------------------------------------------
77

deployment/cake/lib-msbuild.cake

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#addin "nuget:?package=Cake.Issues&version=3.0.0"
2-
#addin "nuget:?package=Cake.Issues.MsBuild&version=3.0.0"
1+
#addin "nuget:?package=Cake.Issues&version=4.0.0"
2+
#addin "nuget:?package=Cake.Issues.MsBuild&version=4.0.0"
33

44
#tool "nuget:?package=MSBuild.Extension.Pack&version=1.9.1"
55

deployment/cake/sourcecontrol-github.cake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#addin "nuget:?package=Cake.GitHub&version=0.1.0"
2-
#addin "nuget:?package=Octokit&version=9.0.0"
2+
#addin "nuget:?package=Octokit&version=9.1.1"
33

44
//-------------------------------------------------------------
55

deployment/cake/tasks.cake

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#l "tests.cake"
2525
#l "templates-tasks.cake"
2626

27-
#addin "nuget:?package=Cake.FileHelpers&version=6.1.3"
27+
#addin "nuget:?package=Cake.FileHelpers&version=7.0.0"
2828
#addin "nuget:?package=Cake.Sonar&version=1.1.32"
2929
#addin "nuget:?package=MagicChunks&version=2.0.0.119"
3030
#addin "nuget:?package=Newtonsoft.Json&version=13.0.3"
@@ -36,7 +36,7 @@
3636
// It probably means the tool is not correctly installed.
3737
// `dotnet tool install --global dotnet-sonarscanner --ignore-failed-sources`
3838
//#tool "nuget:?package=MSBuild.SonarQube.Runner.Tool&version=4.8.0"
39-
#tool "nuget:?package=dotnet-sonarscanner&version=6.0.0"
39+
#tool "nuget:?package=dotnet-sonarscanner&version=6.1.0"
4040

4141
//-------------------------------------------------------------
4242
// BACKWARDS COMPATIBILITY CODE - START

deployment/cake/tests-nunit.cake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#tool "nuget:?package=NUnit.ConsoleRunner&version=3.16.3"
1+
#tool "nuget:?package=NUnit.ConsoleRunner&version=3.17.0"
22

33
//-------------------------------------------------------------
44

0 commit comments

Comments
 (0)