Skip to content

Commit

Permalink
Update to .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
WilStead committed Nov 24, 2023
1 parent 3a2d1bf commit df5f51b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -9,11 +9,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Setup .NET 7
- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
# Semantic version range syntax or exact version of a dotnet version
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'
include-prerelease: true

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
@@ -1,6 +1,6 @@
name: publish
env:
VERSION: '2.1.0'
VERSION: '2.2.0'
on:
push:
branches: [ main ]
Expand All @@ -11,11 +11,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Setup .NET 7
- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
# Semantic version range syntax or exact version of a dotnet version
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'
include-prerelease: true

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
![build](https://img.shields.io/github/workflow/status/Tavenem/Extensions/publish/main) [![NuGet downloads](https://img.shields.io/nuget/dt/Tavenem.Extensions)](https://www.nuget.org/packages/Tavenem.Extensions/)
![build](https://img.shields.io/github/actions/workflow/status/Tavenem/Extensions/publish.yml?branch=main) [![NuGet downloads](https://img.shields.io/nuget/dt/Tavenem.Extensions)](https://www.nuget.org/packages/Tavenem.Extensions/)

Tavenem.Extensions
==
Expand Down
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 2.2.0
### Updated
- Update to .NET 8

## 2.1.0
### Updated
- Update to .NET 7
Expand Down
9 changes: 1 addition & 8 deletions src/Tavenem.Extensions.csproj
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down Expand Up @@ -29,11 +29,4 @@
<None Include="tavenem_128.png" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

</Project>

0 comments on commit df5f51b

Please sign in to comment.