Skip to content

Commit

Permalink
Merge pull request #75 from rprouse/update-dotnet
Browse files Browse the repository at this point in the history
Upgrade to .NET 8
  • Loading branch information
rprouse authored Sep 21, 2024
2 parents 470f91d + 0fcc472 commit 66c8351
Show file tree
Hide file tree
Showing 6 changed files with 3,456 additions and 16 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -351,3 +351,6 @@ MigrationBackup/

# Code coverage
coverage.json

# Sonarqube
.sonarqube/
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Rob Prouse
Copyright (c) 2024 Rob Prouse

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3,437 changes: 3,437 additions & 0 deletions coverage.xml

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/todo.application/todo.application.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@

<ItemGroup>
<PackageReference Include="ColoredConsole" Version="1.0.0" />
<PackageReference Include="MediatR" Version="12.0.1" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
<PackageReference Include="System.Text.Json" Version="7.0.2" />
<PackageReference Include="MediatR" Version="12.4.1" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta2.21617.1" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
</ItemGroup>

<ItemGroup>
Expand Down
14 changes: 7 additions & 7 deletions src/todo/todo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Alteridem.Todo</RootNamespace>
<AssemblyName>todo</AssemblyName>
<Authors>Rob Prouse</Authors>
<Company>Alteridem Consulting</Company>
<Product>Todo.txt command line utility</Product>
<Copyright>Copyright (c) 2023 Rob Prouse</Copyright>
<Copyright>Copyright (c) 2024 Rob Prouse</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/rprouse/dotnet-todo</PackageProjectUrl>
<RepositoryUrl>https://github.com/rprouse/dotnet-todo</RepositoryUrl>
<PackageId>dotnet-todo</PackageId>
<Version>0.5.2</Version>
<Version>0.6.0</Version>
<PackAsTool>true</PackAsTool>
<ToolCommandName>todo</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
Expand All @@ -30,10 +30,10 @@

<ItemGroup>
<PackageReference Include="ColoredConsole" Version="1.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta3.22114.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta2.21617.1" />
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta2.21617.1" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions tests/todo.tests/todo.tests.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<RootNamespace>Alteridem.Todo.Tests</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.10.0" />
<PackageReference Include="nunit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2">
<PackageReference Include="FluentAssertions" Version="6.12.1" />
<PackageReference Include="nunit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 66c8351

Please sign in to comment.