Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add NET 7.0 #192

Merged
merged 5 commits into from
Jun 16, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -38,15 +38,12 @@ jobs:
echo ("Copyright=" + $Copyright) >> $Env:GITHUB_ENV
shell: pwsh

- name: Setup .NET Core SDK 5.0.x
uses: actions/setup-dotnet@v1.7.2
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.x

- name: Setup .NET Core SDK 6.0.x
uses: actions/[email protected]
with:
dotnet-version: 6.0.x
dotnet-version: |
6.0.x
7.0.x

- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<!-- These are Source link props -->
<!-- These are Source link props -->
<PublishRepositoryUrl>https://github.com/Shazwazza/Smidge</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
Expand All @@ -23,6 +23,6 @@
<VersionPrefix>4.0.0</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net6.0;net5.0;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>net7.0;net6.0;net5.0</TargetFrameworks>
Shazwazza marked this conversation as resolved.
Show resolved Hide resolved
</PropertyGroup>
</Project>