Skip to content

Commit 1d1197d

Browse files
author
Warren Buckley
authored
Merge branch 'dev' into nesting
2 parents 6a193c0 + af7492d commit 1d1197d

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
run: 'dir env:'
2424

2525
- name: Setup .NET Core
26-
uses: actions/setup-dotnet@v1
26+
uses: actions/setup-dotnet@v3
2727
with:
28-
dotnet-version: '6.0.x'
28+
dotnet-version: '7.0.x'
2929

3030
- name: Run .NET test
3131
run: dotnet test
@@ -40,9 +40,9 @@ jobs:
4040
- uses: actions/checkout@v2
4141

4242
- name: Setup .NET Core
43-
uses: actions/setup-dotnet@v1
43+
uses: actions/setup-dotnet@v3
4444
with:
45-
dotnet-version: '6.0.x'
45+
dotnet-version: '7.0.x'
4646

4747
- name: Make .NET Core Server excutable
4848
working-directory: LogViewer.Server

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
if: ${{ github.event_name == 'pull_request' }}
2929

3030
- name: Setup .NET Core
31-
uses: actions/setup-dotnet@v1
31+
uses: actions/setup-dotnet@v3
3232
with:
33-
dotnet-version: '6.0.x'
33+
dotnet-version: '7.0.x'
3434

3535
# Initializes the CodeQL tools for scanning.
3636
- name: Initialize CodeQL

.github/workflows/intellicode.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
fetch-depth: 0 # We need to fetch the entire Git history in order to verify the authenticity.
1616

1717
- name: Setup .NET Core
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v3
1919
with:
20-
dotnet-version: '6.0.x'
20+
dotnet-version: '7.0.x'
2121
- name: Build with dotnet
2222
working-directory: LogViewer.Server
2323
run: dotnet build # Project needs to build before training a model.

.github/workflows/richcodenav.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818

1919
# **** Please change 'dotnet-version' to be the version of the .NET SDK used in your project **** #
2020
- name: Setup .NET Core
21-
uses: actions/setup-dotnet@v1
21+
uses: actions/setup-dotnet@v3
2222
with:
23-
dotnet-version: '6.0.x'
23+
dotnet-version: '7.0.x'
2424

2525
# **** Please change 'working-directory' to be the location where your .SLN file is located **** #
2626
- name: Install dependencies
@@ -37,7 +37,7 @@ jobs:
3737
working-directory: LogViewer.Client
3838
run: npm install
3939

40-
- uses: microsoft/RichCodeNavIndexer@v0.1.9
40+
- uses: microsoft/RichCodeNavIndexer@v0.1
4141
with:
4242
repo-token: ${{ secrets.GITHUB_TOKEN }}
4343
languages: csharp,typescript

LogViewer.Server.Tests/LogViewer.Server.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77

LogViewer.Server/LogViewer.Server.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net7.0</TargetFramework>
66
<PublishTrimmed>true</PublishTrimmed>
77
<NoWarn>NU1603</NoWarn>
88
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
@@ -18,9 +18,9 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.10" />
21+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="7.0.0" />
2222
<PackageReference Include="Serilog.Expressions" Version="3.4.1" />
23-
<PackageReference Include="Serilog.Formatting.Compact.Reader" Version="1.0.5" />
23+
<PackageReference Include="Serilog.Formatting.Compact.Reader" Version="2.0.0" />
2424
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
2525
</ItemGroup>
2626

0 commit comments

Comments
 (0)