Skip to content

Commit 85a759c

Browse files
authored
Merge pull request #3513 from tig/v1_17_0
Release v1.17.0
2 parents 0db120d + 97d86e4 commit 85a759c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Setup dotnet
3535
uses: actions/setup-dotnet@v4
3636
with:
37-
dotnet-version: 7.0
37+
dotnet-version: 8.0
3838
dotnet-quality: 'ga'
3939

4040
- name: Install dependencies

Example/Example.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<!-- Version numbers are automatically updated by gitversion when a release is released -->
66
<!-- Do not modify these. -->
77
<FileVersion>1.0.0.0</FileVersion>

ReactiveExample/ReactiveExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<!-- Version numbers are automatically updated by gitversion when a release is released -->
66
<!-- Do not modify these. -->
77
<!--<AssemblyVersion>1.14.0.0</AssemblyVersion>

UICatalog/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ENV LANG=en_US.UTF-8 \
1616
DISPLAY=:0
1717
WORKDIR /app
1818

19-
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
19+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
2020
WORKDIR /src
2121
COPY ["Terminal.Gui/Directory.Build.props", "Terminal.Gui/"]
2222
COPY ["UICatalog/UICatalog.csproj", "UICatalog/"]

0 commit comments

Comments
 (0)