-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Add and Remove validation improvement + Unit tests for API added + Global package versions and source mapping + Bumped StyleCop to beta to support new C# syntax as per DotNetAnalyzers/StyleCopAnalyzers#3871 + Restructured Solution --------- Co-authored-by: Ivan Lieckens <[email protected]>
- Loading branch information
1 parent
89ef462
commit 15d7dbf
Showing
120 changed files
with
1,385 additions
and
743 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,117 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Common | ||
*.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 | ||
|
||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.tif binary | ||
*.tiff binary | ||
*.ico binary | ||
*.svg text | ||
*.eps binary | ||
|
||
*.bash text eol=lf | ||
*.fish text eol=lf | ||
*.ksh text eol=lf | ||
*.sh text eol=lf | ||
*.zsh text eol=lf | ||
*.bat text eol=crlf | ||
*.cmd text eol=crlf | ||
|
||
*.json text | ||
*.toml text | ||
*.xml text | ||
*.yaml text | ||
*.yml text | ||
|
||
*.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 | ||
|
||
*.patch -text | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.gitkeep export-ignore | ||
|
||
# CSharp | ||
*.cs text diff=csharp | ||
*.cshtml text diff=html | ||
*.csx text diff=csharp | ||
|
||
# VisualStudio | ||
*.sln text eol=crlf | ||
*.csproj text eol=crlf | ||
*.vbproj text eol=crlf | ||
*.vcxproj text eol=crlf | ||
*.vcproj text eol=crlf | ||
*.dbproj text eol=crlf | ||
*.fsproj text eol=crlf | ||
*.lsproj text eol=crlf | ||
*.wixproj text eol=crlf | ||
*.modelproj text eol=crlf | ||
*.sqlproj text eol=crlf | ||
*.wwaproj text eol=crlf | ||
|
||
*.xproj text eol=crlf | ||
*.props text eol=crlf | ||
*.filters text eol=crlf | ||
*.vcxitems text eol=crlf | ||
|
||
# VSCode | ||
.vscode/*.json linguist-language=JSON-with-Comments | ||
|
||
# MarkDown | ||
*.md linguist-detectable | ||
|
||
# PowerShell | ||
*.ps1 text eol=crlf | ||
*.ps1x text eol=crlf | ||
*.psm1 text eol=crlf | ||
*.psd1 text eol=crlf | ||
*.ps1xml text eol=crlf | ||
*.pssc text eol=crlf | ||
*.psrc text eol=crlf | ||
*.cdxml text eol=crlf |
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,44 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project> | ||
<!-- Further info https://learn.microsoft.com/en-us/nuget/consume-packages/Central-Package-Management --> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Primary Package References"> | ||
<PackageVersion Include="LinqKit.Microsoft.EntityFrameworkCore" Version="8.1.5" /> | ||
<PackageVersion Include="Microsoft.ApplicationInsights.WorkerService" Version="2.22.0" /> | ||
<PackageVersion Include="Microsoft.Azure.Functions.Worker" Version="1.22.0" /> | ||
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.2.0" /> | ||
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="1.3.2" /> | ||
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.17.2" /> | ||
<PackageVersion Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" Version="1.2.0" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.6" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.6" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.1" /> | ||
<PackageVersion Include="Microsoft.Extensions.Http" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" /> | ||
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Test Package References"> | ||
<PackageVersion Include="AutoFixture.AutoNSubstitute" Version="4.18.1" /> | ||
<PackageVersion Include="AutoFixture.Xunit2" Version="4.18.1" /> | ||
<PackageVersion Include="coverlet.collector" Version="6.0.2" /> | ||
<PackageVersion Include="FluentAssertions" Version="6.12.0" /> | ||
<PackageVersion Include="FluentAssertions.Analyzers" Version="0.32.0" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.10.0" /> | ||
<PackageVersion Include="NSubstitute" Version="5.1.0" /> | ||
<PackageVersion Include="NSubstitute.Analyzers.CSharp" Version="1.0.17" /> | ||
<PackageVersion Include="xunit" Version="2.8.1" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Global Project Tooling"> | ||
<GlobalPackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</GlobalPackageReference> | ||
</ItemGroup> | ||
</Project> |
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,18 @@ | ||
<Project> | ||
|
||
<!--<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />--> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Shared Assets"> | ||
<Compile Include="$(MSBuildThisFileDirectory)GlobalSuppressions.cs"> | ||
<Link>GlobalSuppressions.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
</Project> |
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
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
Oops, something went wrong.