Skip to content

Commit

Permalink
feat: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-dudarev committed Sep 30, 2024
1 parent 15555e1 commit fbfef5b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 25 deletions.
17 changes: 6 additions & 11 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,23 @@ root = true
[*]
charset = utf-8
indent_style = space
indent_size = 4
indent_size = 2
end_of_line = crlf
trim_trailing_whitespace = true
insert_final_newline = true

# Project files
[*.{csproj,props}]
indent_size = 2
insert_final_newline = false

# JSON files
[*.json]
indent_size = 2

# Configuration files
[*.config]
indent_size = 2

# HTML files
[*.{html,htm}]
insert_final_newline = false

# Code
[*.{cs,js,ts,ps1,sh,bat,cmd}]
indent_size = 4

# Dotnet code style settings
[*.{cs,vb}]

Expand Down Expand Up @@ -107,7 +102,7 @@ csharp_preserve_single_line_statements = false
csharp_preserve_single_line_blocks = true
csharp_using_directive_placement = outside_namespace:silent
csharp_prefer_simple_using_statement = true:suggestion
csharp_style_namespace_declarations = block_scoped:silent
csharp_style_namespace_declarations = file_scoped:silent
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_top_level_statements = true:silent
csharp_style_expression_bodied_lambdas = true:silent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Include="VirtoCommerce.Platform.Core" Version="3.813.0" />
<PackageReference Include="VirtoCommerce.Platform.Core" Version="3.853.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Telemetry\" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,10 @@
<ProjectReference Include="..\VirtoCommerce.ApplicationInsights.Core\VirtoCommerce.ApplicationInsights.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Serilog.Sinks.ApplicationInsights" Version="4.0.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Include="Microsoft.ApplicationInsights.PerfCounterCollector" Version="2.22.0" />
<PackageReference Include="VirtoCommerce.StoreModule.Core" Version="3.800.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Telemetry\" />
Expand Down
3 changes: 1 addition & 2 deletions src/VirtoCommerce.ApplicationInsights.Web/Module.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using VirtoCommerce.ApplicationInsights.Data.Telemetry;
using VirtoCommerce.Platform.Core.Modularity;
using VirtoCommerce.Platform.Core.Settings;
using VirtoCommerce.StoreModule.Core.Model;


namespace VirtoCommerce.ApplicationInsights.Web;
Expand Down Expand Up @@ -51,7 +50,7 @@ public void PostInitialize(IApplicationBuilder appBuilder)
settingsRegistrar.RegisterSettings(ModuleConstants.Settings.General.AllSettings, ModuleInfo.Id);

// Register store level settings
settingsRegistrar.RegisterSettingsForType(ModuleConstants.Settings.StoreLevelSettings, nameof(Store));
settingsRegistrar.RegisterSettingsForType(ModuleConstants.Settings.StoreLevelSettings, "Store");
}

public void Uninstall()
Expand Down
4 changes: 2 additions & 2 deletions src/VirtoCommerce.ApplicationInsights.Web/module.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<version>3.802.0</version>
<version-tag>
</version-tag>
<platformVersion>3.800.0</platformVersion>
<platformVersion>3.853.0</platformVersion>
<dependencies>
</dependencies>
<title>Azure Application Insights</title>
Expand All @@ -15,7 +15,7 @@
<owners>
<owner>VirtoCommerce</owner>
</owners>
<projectUrl>https://github.com/VirtoCommerce/vc-module-application-insights</projectUrl>
<projectUrl>https://github.com/VirtoCommerce/vc-module-app-insights</projectUrl>
<iconUrl>Modules/$(VirtoCommerce.ApplicationInsights)/Content/logo.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<assemblyFile>VirtoCommerce.ApplicationInsights.Web.dll</assemblyFile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
<SonarQubeTestProject>true</SonarQubeTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.6.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\VirtoCommerce.ApplicationInsights.Core\VirtoCommerce.ApplicationInsights.Core.csproj" />
Expand Down

0 comments on commit fbfef5b

Please sign in to comment.