-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/0.19.0: (44 commits) (build) Make use of new GRM features (doc) Remove unnecessary space. (doc) Document the new set-due-date option (doc) Fixed formatting (doc) Document the new include-contributors option (#89) Add required mappings for GitLab models (#89) Include contributors in release notes (#568) Set the 'Due date' when closing a milestone Bump coverlet.msbuild from 6.0.3 to 6.0.4 in /src in the tests group Bump Roslynator.Analyzers Bump Shouldly from 4.2.1 to 4.3.0 in /src Bump cake-build/cake-action from 2 to 3 Bump Microsoft.Extensions.DependencyInjection in /src Bump NGitLab from 7.1.0 to 7.6.0 in /src (build) Install .NET 7.0 on build machine Bump NGitLab from 7.0.1 to 7.1.0 in /src Bump NUnit3TestAdapter from 4.5.0 to 4.6.0 in /src Bump NUnit from 4.1.0 to 4.3.2 in /src Bump Destructurama.Attributed and Serilog in /src Bump Microsoft.Extensions.DependencyInjection in /src ...
- Loading branch information
Showing
48 changed files
with
882 additions
and
206 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
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 |
---|---|---|
@@ -1,29 +1,104 @@ | ||
* text eol=crlf whitespace=tab-in-indent,tabwidth=4 | ||
|
||
*.sh text eol=lf | ||
|
||
*.md text whitespace=-blank-at-eol | ||
|
||
# Custom for Visual Studio | ||
*.cs text diff=csharp | ||
*.sln merge=union whitespace=-tab-in-indent,-blank-at-eof,indent-with-non-tab | ||
*.csproj merge=union | ||
*.vbproj merge=union | ||
*.fsproj merge=union | ||
*.dbproj merge=union | ||
|
||
# Standard to msysgit | ||
*.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 | ||
|
||
*.png binary | ||
|
||
.editorconfig text whitespace=-blank-at-eol | ||
# Common settings that generally should always be used with your language specific settings | ||
|
||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# | ||
# The above will handle all files NOT found below | ||
# | ||
|
||
# Documents | ||
*.bibtex text diff=bibtex | ||
*.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 | ||
*.md text diff=markdown | ||
*.mdx text diff=markdown | ||
*.tex text diff=tex | ||
*.adoc text | ||
*.textile text | ||
*.mustache text | ||
*.csv text eol=crlf | ||
*.tab text | ||
*.tsv text | ||
*.txt text | ||
*.sql text | ||
*.epub diff=astextplain | ||
|
||
# Graphics | ||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.tif binary | ||
*.tiff binary | ||
*.ico binary | ||
# SVG treated as text by default. | ||
*.svg text | ||
# If you want to treat it as binary, | ||
# use the following line instead. | ||
# *.svg binary | ||
*.eps binary | ||
|
||
# Scripts | ||
*.bash text eol=lf | ||
*.fish text eol=lf | ||
*.ksh text eol=lf | ||
*.sh text eol=lf | ||
*.zsh text eol=lf | ||
# These are explicitly windows files and should use crlf | ||
*.bat text eol=crlf | ||
*.cmd text eol=crlf | ||
*.ps1 text eol=crlf | ||
|
||
# Serialisation | ||
*.json text | ||
*.toml text | ||
*.xml text | ||
*.yaml text | ||
*.yml text | ||
|
||
# Archives | ||
*.7z binary | ||
*.bz binary | ||
*.bz2 binary | ||
*.bzip2 binary | ||
*.gz binary | ||
*.lz binary | ||
*.lzma binary | ||
*.rar binary | ||
*.tar binary | ||
*.taz binary | ||
*.tbz binary | ||
*.tbz2 binary | ||
*.tgz binary | ||
*.tlz binary | ||
*.txz binary | ||
*.xz binary | ||
*.Z binary | ||
*.zip binary | ||
*.zst binary | ||
|
||
# Text files where line endings should be preserved | ||
*.patch -text | ||
|
||
*.cs text diff=csharp | ||
*.cshtml text diff=html | ||
*.csx text diff=csharp | ||
*.sln text eol=crlf | ||
*.csproj text eol=crlf | ||
|
||
# | ||
# Exclude files from exporting | ||
# | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.gitkeep export-ignore |
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 |
---|---|---|
@@ -1,7 +1,28 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
labels: | ||
- "Build" | ||
schedule: | ||
interval: daily | ||
- package-ecosystem: nuget | ||
directory: "/src" | ||
labels: | ||
- "Build" | ||
groups: | ||
analyzers: | ||
patterns: | ||
- "*Analyzers" | ||
serilog: | ||
patterns: | ||
- "Serilog.*" | ||
tests: | ||
patterns: | ||
- "NUnit.*" | ||
- "Microsoft.NET.Test.Sdk" | ||
- "NSubstitute" | ||
- "coverlet.msbuild" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 |
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
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
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,39 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled> | ||
<NoWarn>$(NoWarn);NU1507</NoWarn> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageVersion Include="ApprovalTests" Version="6.0.0" /> | ||
<PackageVersion Include="AutoMapper" Version="13.0.1" /> | ||
<PackageVersion Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageVersion Include="coverlet.msbuild" Version="6.0.4" /> | ||
<PackageVersion Include="Destructurama.Attributed" Version="5.1.0" /> | ||
<PackageVersion Include="GraphQL.Client" Version="6.0.1" /> | ||
<PackageVersion Include="GraphQL.Client.Serializer.SystemTextJson" Version="6.0.1" /> | ||
<PackageVersion Include="IDisposableAnalyzers" Version="4.0.8" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="9.0.2" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" /> | ||
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" /> | ||
<PackageVersion Include="NGitLab" Version="7.6.0" /> | ||
<PackageVersion Include="NSubstitute" Version="5.3.0" /> | ||
<PackageVersion Include="NUnit" Version="4.3.2" /> | ||
<PackageVersion Include="NUnit.Analyzers" Version="4.6.0" /> | ||
<PackageVersion Include="NUnit3TestAdapter" Version="4.6.0" /> | ||
<PackageVersion Include="Octokit" Version="14.0.0" /> | ||
<PackageVersion Include="Roslynator.Analyzers" Version="4.13.0" /> | ||
<PackageVersion Include="Scriban" Version="5.12.1" /> | ||
<PackageVersion Include="Serilog" Version="4.2.0" /> | ||
<PackageVersion Include="Serilog.Sinks.Console" Version="6.0.0" /> | ||
<PackageVersion Include="Serilog.Sinks.Debug" Version="3.0.0" /> | ||
<PackageVersion Include="Serilog.Sinks.File" Version="6.0.0" /> | ||
<PackageVersion Include="seriloganalyzer" Version="0.15.0" /> | ||
<PackageVersion Include="Shouldly" Version="4.3.0" /> | ||
<PackageVersion Include="StyleCop.Analyzers" Version="1.1.118" /> | ||
<PackageVersion Include="System.Net.Http" Version="4.3.4" /> | ||
<PackageVersion Include="TextCopy" Version="6.2.1" /> | ||
<PackageVersion Include="YamlDotNet" Version="13.7.1" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.