Skip to content

Commit 96aedd6

Browse files
v5.0.0.
1 parent 077f45c commit 96aedd6

File tree

93 files changed

+24
-22
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+24
-22
lines changed

.editorconfig

+2
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,8 @@ dotnet_diagnostic.SA1012.severity = error
275275
dotnet_diagnostic.SA1500.severity = error
276276
dotnet_diagnostic.SA1316.severity = error
277277
dotnet_diagnostic.SA0001.severity = none
278+
csharp_prefer_system_threading_lock = true:suggestion
279+
dotnet_diagnostic.MA0132.severity = error
278280

279281
[*.{cs,vb}]
280282
dotnet_style_operator_placement_when_wrapping = beginning_of_line

.github/workflows/dotnet-core-desktop.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
configuration: [Release, Debug]
15+
configuration: [Release]
1616

1717
runs-on: windows-latest # For a list of available runner types, refer to
1818
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
@@ -22,13 +22,13 @@ jobs:
2222

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4.2.2
2626
with:
2727
fetch-depth: 0
2828

2929
# Install the .NET Core workload
3030
- name: Install .NET Core
31-
uses: actions/setup-dotnet@v4.1.0
31+
uses: actions/setup-dotnet@v4.2.0
3232
with:
3333
dotnet-version: 9.0.x
3434

@@ -53,7 +53,7 @@ jobs:
5353

5454
# Publish Artifacts
5555
- name: 'Publish Artifacts'
56-
uses: actions/[email protected].0
56+
uses: actions/[email protected].3
5757
with:
5858
name: artifactory_${{ matrix.configuration }}
5959
path: ./Analogy.LogViewer.LoggersTree/bin/${{ matrix.configuration }}
@@ -63,19 +63,17 @@ jobs:
6363
if: ${{ github.event_name == 'push'}}
6464
runs-on: windows-latest
6565
steps:
66+
- name: Setup NuGet.exe for use with actions
67+
uses: NuGet/[email protected]
6668
- name: 'Download Artifact'
6769
uses: actions/[email protected]
6870
with:
6971
name: artifactory_Release
7072
- name: 'Dotnet NuGet Push'
7173
run: |
7274
Get-ChildItem ./ -Filter *.nupkg |
73-
Where-Object { !$_.Name.Contains('preview') } |
7475
ForEach-Object { dotnet nuget push $_ --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} }
7576
shell: pwsh
76-
77-
- name: Setup NuGet.exe for use with actions
78-
uses: NuGet/[email protected]
7977
concurrency:
8078
group: ${{ github.ref }}
8179
cancel-in-progress: true

Analogy.LogViewer.LoggersTree/Analogy.LogViewer.LoggersTree.csproj

+13-13
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageIcon>icon.png</PackageIcon>
1414
<PackageIconUrl />
1515
<Description>Loggers tree extension</Description>
16-
<VersionPrefix>4.2.0</VersionPrefix>
16+
<VersionPrefix>5.0.0</VersionPrefix>
1717
<VersionSuffix></VersionSuffix>
1818
</PropertyGroup>
1919

@@ -49,10 +49,10 @@
4949
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
5050
</PropertyGroup>
5151
<ItemGroup>
52-
<PackageReference Include="Analogy.CommonUtilities" Version="7.2.0" />
53-
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="7.2.0" />
54-
<PackageReference Include="Analogy.LogViewer.Template" Version="7.2.0" />
55-
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
52+
<PackageReference Include="Analogy.CommonUtilities" Version="8.0.0" />
53+
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="8.0.0" />
54+
<PackageReference Include="Analogy.LogViewer.Template" Version="8.0.0" />
55+
<PackageReference Include="System.Resources.Extensions" Version="9.0.1" />
5656
</ItemGroup>
5757

5858
<ItemGroup>
@@ -63,26 +63,26 @@
6363
</ItemGroup>
6464

6565
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0-windows' or '$(TargetFramework)' == 'net9.0-windows' ">
66-
<Reference Include="DevExpress.Utils.v21.2">
67-
<HintPath>..\DevExpress\.net core\DevExpress.Utils.v21.2.dll</HintPath>
66+
<Reference Include="DevExpress.Utils.v24.2">
67+
<HintPath>..\DevExpress\.net core\DevExpress.Utils.v24.2.dll</HintPath>
6868
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
6969
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
7070
</Reference>
71-
<Reference Include="DevExpress.XtraBars.v21.2">
72-
<HintPath>..\DevExpress\.net core\DevExpress.XtraBars.v21.2.dll</HintPath>
71+
<Reference Include="DevExpress.XtraBars.v24.2">
72+
<HintPath>..\DevExpress\.net core\DevExpress.XtraBars.v24.2.dll</HintPath>
7373
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
7474
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
7575
</Reference>
7676
</ItemGroup>
7777

7878
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
79-
<Reference Include="DevExpress.Utils.v21.2">
80-
<HintPath>..\DevExpress\.net framework\DevExpress.Utils.v21.2.dll</HintPath>
79+
<Reference Include="DevExpress.Utils.v24.2">
80+
<HintPath>..\DevExpress\.net framework\DevExpress.Utils.v24.2.dll</HintPath>
8181
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
8282
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
8383
</Reference>
84-
<Reference Include="DevExpress.XtraBars.v21.2">
85-
<HintPath>..\DevExpress\.net framework\DevExpress.XtraBars.v21.2.dll</HintPath>
84+
<Reference Include="DevExpress.XtraBars.v24.2">
85+
<HintPath>..\DevExpress\.net framework\DevExpress.XtraBars.v24.2.dll</HintPath>
8686
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
8787
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
8888
</Reference>

Analogy.LogViewer.LoggersTree/LoggersTree/ExtensionLoggersTree.cs

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Analogy.Interfaces;
2+
using Analogy.Interfaces.DataTypes;
23
using Microsoft.Extensions.Logging;
34
using System;
45
using System.Collections.Generic;

Analogy.LogViewer.LoggersTree/LoggersTree/UcLoggersTree.cs

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Analogy.Interfaces;
2+
using Analogy.Interfaces.DataTypes;
23
using Analogy.LogViewer.LoggersTree.Properties;
34
using Analogy.LogViewer.LoggersTree.Utils;
45
using DevExpress.Skins;

0 commit comments

Comments
 (0)