Skip to content

Commit d90f43a

Browse files
v8.0.0.0
1 parent 200cb97 commit d90f43a

File tree

7 files changed

+19
-18
lines changed

7 files changed

+19
-18
lines changed

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

Lines changed: 6 additions & 5 deletions
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
Test_Project_Path: Analogy.LogServer.Tests\Analogy.LogServer.Tests.csproj
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v3
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

@@ -52,7 +52,7 @@ jobs:
5252

5353
# Publish Artifacts
5454
- name: 'Publish Artifacts'
55-
uses: actions/[email protected].0
55+
uses: actions/[email protected].3
5656
with:
5757
name: artifactory_${{ matrix.configuration }}
5858
path: |
@@ -65,14 +65,15 @@ jobs:
6565
if: ${{ github.event_name == 'push'}}
6666
runs-on: windows-latest
6767
steps:
68+
- name: Setup NuGet.exe for use with actions
69+
uses: NuGet/[email protected]
6870
- name: 'Download Artifact'
6971
uses: actions/[email protected]
7072
with:
7173
name: artifactory_Release
7274
- name: 'Dotnet NuGet Push'
7375
run: |
7476
Get-ChildItem .\Analogy.LogServer.Clients\bin\Release -Filter *.nupkg |
75-
Where-Object { !$_.Name.Contains('preview') } |
7677
ForEach-Object { dotnet nuget push $_ --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{secrets.NUGET_CLIENTS_API_KEY}} }
7778
shell: pwsh
7879

Analogy.LogServer.Clients.Test.Console/Analogy.LogServer.Clients.Test.Console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
88
</PropertyGroup>
99
<ItemGroup>
10-
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="7.2.0" />
10+
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="8.0.0" />
1111
<PackageReference Include="System.Resources.Extensions" Version="9.0.1" />
1212
</ItemGroup>
1313
<ItemGroup>

Analogy.LogServer.Clients/Analogy.LogServer.Clients.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<Description>grpc client to send messages To Analogy Log Viewer with gRPC server running</Description>
99
<Copyright>Lior Banai 2020-2025</Copyright>
1010
<PackageIcon>Analogy.gRPC.service.png</PackageIcon>
11-
<VersionPrefix>7.2.0.1</VersionPrefix>
11+
<VersionPrefix>8.0.0.0</VersionPrefix>
1212
<VersionSuffix></VersionSuffix>
1313
<RepositoryUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.gRPC</RepositoryUrl>
1414
<PackageProjectUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.gRPC</PackageProjectUrl>
@@ -28,7 +28,7 @@
2828
</ItemGroup>
2929

3030
<ItemGroup>
31-
<PackageReference Include="Analogy.Interfaces.DataTypes" Version="1.1.0" />
31+
<PackageReference Include="Analogy.Interfaces.DataTypes" Version="2.0.0" />
3232
<PackageReference Include="Google.Protobuf" Version="3.29.3" />
3333
<PackageReference Include="Grpc.Core" Version="2.46.6" />
3434
<PackageReference Include="Grpc.Net.Client" Version="2.67.0" />

Analogy.LogServer.Clients/Protos/Analogy.proto

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ message AnalogyGRPCLogMessage {
1616
string Text = 1;
1717
AnalogyGRPCLogLevel Level = 2;
1818
google.protobuf.Timestamp Date = 3;
19-
int32 ProcessId =4;
20-
int32 ThreadId =5;
21-
string Module =6;
19+
int32 ProcessId = 4;
20+
int32 ThreadId = 5;
21+
string Module = 6;
2222
string Source = 7;
2323
string MethodName = 8;
2424
string FileName = 9;
2525
int32 LineNumber = 10;
26-
string MachineName=11;
26+
string MachineName= 11;
2727
string Category = 12;
28-
string User =13;
29-
map<string,string> AdditionalInformation=14;
28+
string User = 13;
29+
map<string,string> AdditionalInformation = 14;
3030
string Id = 15;
31-
AnalogyGRPCLogClass Class=16;
31+
AnalogyGRPCLogClass Class = 16;
3232
}
3333

3434
// The response message containing the greetings.

Analogy.LogServer.Configurator/Analogy.LogServer.Configurator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="7.2.0" />
19+
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="8.0.0" />
2020
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2121
<PackageReference Include="System.Resources.Extensions" Version="9.0.1" />
2222
</ItemGroup>

Analogy.LogServer.Tests/Analogy.LogServer.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="7.2.0" />
14+
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="8.0.0" />
1515
<PackageReference Include="System.Resources.Extensions" Version="9.0.1" />
1616
</ItemGroup>
1717

Analogy.LogServer/Analogy.LogServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="7.2.0" />
32+
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="8.0.0" />
3333
<PackageReference Include="Grpc.AspNetCore" Version="2.67.0" />
3434
<PackageReference Include="Grpc.Core" Version="2.46.6" />
3535
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />

0 commit comments

Comments
 (0)