-
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
95 changed files
with
1,390 additions
and
1,680 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
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,11 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: nuget | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 10 | ||
groups: | ||
tests: | ||
patterns: ["*"] | ||
update-types: ["minor", "patch"] |
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 |
---|---|---|
@@ -1,96 +1,106 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<LangVersion>latest</LangVersion> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<AnalysisMode>AllEnabledByDefault</AnalysisMode> | ||
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors> | ||
<EnableNETAnalyzers>true</EnableNETAnalyzers> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild> | ||
<RunAnalyzersDuringLiveAnalysis>true</RunAnalyzersDuringLiveAnalysis> | ||
<!-- | ||
<PropertyGroup> | ||
<LangVersion>latest</LangVersion> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<AnalysisMode>AllEnabledByDefault</AnalysisMode> | ||
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors> | ||
<EnableNETAnalyzers>true</EnableNETAnalyzers> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild> | ||
<RunAnalyzersDuringLiveAnalysis>true</RunAnalyzersDuringLiveAnalysis> | ||
<!-- | ||
CA2007: Consider calling ConfigureAwait on the awaited task | ||
MA0004: Use Task.ConfigureAwait(false) as the current SynchronizationContext is not needed | ||
CA1056: Change the type of property 'Url' from 'string' to 'System.Uri' | ||
CA1054: Change the type of parameter of the method to allow a Uri to be passed as a 'System.Uri' object | ||
CA1055: Change the return type of method from 'string' to 'System.Uri' | ||
--> | ||
<NoWarn>$(NoWarn);CA2007;CA1056;CA1054;CA1055;MA0004;RCS1090</NoWarn> | ||
<NoError>$(NoError);CA2007;CA1056;CA1054;CA1055;MA0004;RCS1090</NoError> | ||
<Deterministic>true</Deterministic> | ||
<Features>strict</Features> | ||
<ReportAnalyzer>true</ReportAnalyzer> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Using Include="System.Globalization"/> | ||
<Using Include="System.Text.Json"/> | ||
<Using Include="System.FormattableString" Static="True"/> | ||
<Using Include="System.Console" Static="True"/> | ||
<Using Include="System.Security.Cryptography"/> | ||
<Using Include="System.Diagnostics.CodeAnalysis"/> | ||
<Using Include="System.Text.Json.Serialization"/> | ||
<Using Include="System.Linq.Expressions"/> | ||
<Using Include="System.Reflection"/> | ||
<Using Include="System.ComponentModel.DataAnnotations"/> | ||
<Using Include="System.Diagnostics"/> | ||
<Using Include="System.ComponentModel.DataAnnotations.Schema"/> | ||
<Using Include="System.Net"/> | ||
<Using Include="System.Net.Http.Headers"/> | ||
<Using Include="System.Net.Http.Json"/> | ||
<Using Include="System.Text.Json"/> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(Configuration)' == 'Debug'"> | ||
<PackageReference Include="Meziantou.Analyzer"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="AsyncFixer"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Asyncify"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="SonarAnalyzer.CSharp"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="SecurityCodeScan.VS2019"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.Analyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AdditionalFiles Include="$(MSBuildThisFileDirectory)BannedSymbols.txt" Link="Properties/BannedSymbols.txt"/> | ||
<Compile Include="$(MSBuildThisFileDirectory)/common/AssemblyInfo.cs" Link="Properties/AssemblyInfo.common.cs"/> | ||
</ItemGroup> | ||
<NoWarn>$(NoWarn);CA2007;CA1056;CA1054;CA1055;MA0004;RCS1090</NoWarn> | ||
<NoError>$(NoError);CA2007;CA1056;CA1054;CA1055;MA0004;RCS1090</NoError> | ||
<Deterministic>true</Deterministic> | ||
<Features>strict</Features> | ||
<ReportAnalyzer>true</ReportAnalyzer> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<NuGetAudit>true</NuGetAudit> | ||
<NuGetAuditMode>all</NuGetAuditMode> | ||
<NuGetAuditLevel>low</NuGetAuditLevel> | ||
<WarningsNotAsErrors Condition="'$(Configuration)' != 'Release'"> | ||
$(WarningsNotAsErrors);NU1900;NU1901;NU1902;NU1903;NU1904 | ||
</WarningsNotAsErrors> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Using Include="System.Globalization"/> | ||
<Using Include="System.Text.Json"/> | ||
<Using Include="System.FormattableString" Static="True"/> | ||
<Using Include="System.Console" Static="True"/> | ||
<Using Include="System.Security.Cryptography"/> | ||
<Using Include="System.Diagnostics.CodeAnalysis"/> | ||
<Using Include="System.Text.Json.Serialization"/> | ||
<Using Include="System.Linq.Expressions"/> | ||
<Using Include="System.Reflection"/> | ||
<Using Include="System.ComponentModel.DataAnnotations"/> | ||
<Using Include="System.Diagnostics"/> | ||
<Using Include="System.ComponentModel.DataAnnotations.Schema"/> | ||
<Using Include="System.Net"/> | ||
<Using Include="System.Net.Http.Headers"/> | ||
<Using Include="System.Net.Http.Json"/> | ||
<Using Include="System.Text.Json"/> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(Configuration)' == 'Debug'"> | ||
<PackageReference Include="Meziantou.Analyzer"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="AsyncFixer"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Asyncify"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="SonarAnalyzer.CSharp"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="SecurityCodeScan.VS2019"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.Analyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AdditionalFiles Include="$(MSBuildThisFileDirectory)BannedSymbols.txt" Link="Properties/BannedSymbols.txt"/> | ||
<Compile Include="$(MSBuildThisFileDirectory)/common/AssemblyInfo.cs" Link="Properties/AssemblyInfo.common.cs"/> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
<Project> | ||
<ItemGroup> | ||
<PackageVersion Include="Meziantou.Analyzer" Version="2.0.163" /> | ||
<PackageVersion Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.11.20" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4" /> | ||
<PackageVersion Include="AsyncFixer" Version="1.6.0" /> | ||
<PackageVersion Include="Asyncify" Version="0.9.7" /> | ||
<PackageVersion Include="SonarAnalyzer.CSharp" Version="9.32.0.97167" /> | ||
<PackageVersion Include="SecurityCodeScan.VS2019" Version="5.6.7" /> | ||
<PackageVersion Include="Roslynator.Analyzers" Version="4.12.5" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Analyzers" Version="8.0.8" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.8" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.8" /> | ||
<PackageVersion Include="DNTBreadCrumb.Core" Version="2.0.2" /> | ||
<PackageVersion Include="DNTCaptcha.Core" Version="5.2.7" /> | ||
<PackageVersion Include="DNTCommon.Web.Core" Version="6.5.1" /> | ||
<PackageVersion Include="DNTPersianUtils.Core" Version="6.3.1" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="8.0.8" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.8" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.8" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.8" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.2" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.8" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="8.0.8" /> | ||
<PackageVersion Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" /> | ||
<PackageVersion Include="System.ComponentModel.Annotations" Version="5.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Options" Version="8.0.2" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" /> | ||
<PackageVersion Include="MSTest.TestAdapter" Version="3.6.0" /> | ||
<PackageVersion Include="MSTest.TestFramework" Version="3.6.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Caching.SqlServer" Version="8.0.8" /> | ||
<PackageVersion Include="cloudscribe.Web.Pagination" Version="8.0.0" /> | ||
<PackageVersion Include="LigerShark.WebOptimizer.Core" Version="3.0.426" /> | ||
<PackageVersion Include="Microsoft.Web.LibraryManager.Build" Version="2.1.175" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageVersion Include="Meziantou.Analyzer" Version="2.0.179"/> | ||
<PackageVersion Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.12.19"/> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4"/> | ||
<PackageVersion Include="AsyncFixer" Version="1.6.0"/> | ||
<PackageVersion Include="Asyncify" Version="0.9.7"/> | ||
<PackageVersion Include="SonarAnalyzer.CSharp" Version="9.32.0.97167"/> | ||
<PackageVersion Include="SecurityCodeScan.VS2019" Version="5.6.7"/> | ||
<PackageVersion Include="Roslynator.Analyzers" Version="4.12.9"/> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Analyzers" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0"/> | ||
<PackageVersion Include="DNTBreadCrumb.Core" Version="2.0.2"/> | ||
<PackageVersion Include="DNTCaptcha.Core" Version="5.2.7"/> | ||
<PackageVersion Include="DNTCommon.Web.Core" Version="7.6.2"/> | ||
<PackageVersion Include="DNTPersianUtils.Core" Version="6.3.1"/> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.Extensions.Identity.Stores" Version="9.0.0"/> | ||
<PackageVersion Include="System.ComponentModel.Annotations" Version="5.0.0"/> | ||
<PackageVersion Include="Microsoft.Extensions.Options" Version="9.0.0"/> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1"/> | ||
<PackageVersion Include="MSTest.TestAdapter" Version="3.6.3"/> | ||
<PackageVersion Include="MSTest.TestFramework" Version="3.6.3"/> | ||
<PackageVersion Include="Microsoft.Extensions.Caching.SqlServer" Version="9.0.0"/> | ||
<PackageVersion Include="cloudscribe.Web.Pagination" Version="8.0.0"/> | ||
<PackageVersion Include="LigerShark.WebOptimizer.Core" Version="3.0.433"/> | ||
<PackageVersion Include="Microsoft.Web.LibraryManager.Build" Version="2.1.175"/> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.