Skip to content

Commit

Permalink
Merge pull request #18 from corytodd/net7.0
Browse files Browse the repository at this point in the history
net7.0 migration
  • Loading branch information
corytodd authored Oct 5, 2023
2 parents 349a8a3 + 903e02c commit 67193c2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 7.0.x

# Execute all unit tests in the solution
- name: Execute unit tests
Expand Down
4 changes: 2 additions & 2 deletions Walrus.CLI/Walrus.CLI.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<SemVer>0.1.12</SemVer>
<SemVer>0.2.0</SemVer>
<Suffix></Suffix>
</PropertyGroup>

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<PackAsTool>true</PackAsTool>
<AssemblyName>corytodd.us.walrusc</AssemblyName>
<ToolCommandName>walrusc</ToolCommandName>
Expand Down
2 changes: 1 addition & 1 deletion Walrus.Core.Tests/Walrus.Core.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions Walrus.Core/Walrus.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="LibGit2Sharp" Version="0.27.0-preview-0116" />
<PackageReference Include="LibGit2Sharp" Version="0.27.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
</ItemGroup>

Expand Down

0 comments on commit 67193c2

Please sign in to comment.