Skip to content

Commit 66c8351

Browse files
authored
Merge pull request #75 from rprouse/update-dotnet
Upgrade to .NET 8
2 parents 470f91d + 0fcc472 commit 66c8351

File tree

6 files changed

+3456
-16
lines changed

6 files changed

+3456
-16
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,3 +351,6 @@ MigrationBackup/
351351

352352
# Code coverage
353353
coverage.json
354+
355+
# Sonarqube
356+
.sonarqube/

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Rob Prouse
3+
Copyright (c) 2024 Rob Prouse
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

coverage.xml

Lines changed: 3437 additions & 0 deletions
Large diffs are not rendered by default.

src/todo.application/todo.application.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
<ItemGroup>
2121
<PackageReference Include="ColoredConsole" Version="1.0.0" />
22-
<PackageReference Include="MediatR" Version="12.0.1" />
23-
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
24-
<PackageReference Include="System.Text.Json" Version="7.0.2" />
22+
<PackageReference Include="MediatR" Version="12.4.1" />
23+
<PackageReference Include="System.CommandLine" Version="2.0.0-beta2.21617.1" />
24+
<PackageReference Include="System.Text.Json" Version="8.0.4" />
2525
</ItemGroup>
2626

2727
<ItemGroup>

src/todo/todo.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<RootNamespace>Alteridem.Todo</RootNamespace>
77
<AssemblyName>todo</AssemblyName>
88
<Authors>Rob Prouse</Authors>
99
<Company>Alteridem Consulting</Company>
1010
<Product>Todo.txt command line utility</Product>
11-
<Copyright>Copyright (c) 2023 Rob Prouse</Copyright>
11+
<Copyright>Copyright (c) 2024 Rob Prouse</Copyright>
1212
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1313
<PackageProjectUrl>https://github.com/rprouse/dotnet-todo</PackageProjectUrl>
1414
<RepositoryUrl>https://github.com/rprouse/dotnet-todo</RepositoryUrl>
1515
<PackageId>dotnet-todo</PackageId>
16-
<Version>0.5.2</Version>
16+
<Version>0.6.0</Version>
1717
<PackAsTool>true</PackAsTool>
1818
<ToolCommandName>todo</ToolCommandName>
1919
<PackageOutputPath>./nupkg</PackageOutputPath>
@@ -30,10 +30,10 @@
3030

3131
<ItemGroup>
3232
<PackageReference Include="ColoredConsole" Version="1.0.0" />
33-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
34-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
35-
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
36-
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta3.22114.1" />
33+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
34+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
35+
<PackageReference Include="System.CommandLine" Version="2.0.0-beta2.21617.1" />
36+
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta2.21617.1" />
3737
</ItemGroup>
3838

3939
<ItemGroup>

tests/todo.tests/todo.tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<RootNamespace>Alteridem.Todo.Tests</RootNamespace>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="FluentAssertions" Version="6.10.0" />
11-
<PackageReference Include="nunit" Version="3.13.3" />
12-
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2">
10+
<PackageReference Include="FluentAssertions" Version="6.12.1" />
11+
<PackageReference Include="nunit" Version="4.2.2" />
12+
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>
16-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

0 commit comments

Comments
 (0)