File tree Expand file tree Collapse file tree 6 files changed +14
-12
lines changed Expand file tree Collapse file tree 6 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >netstandard2.1 </TargetFramework >
4
+ <TargetFramework >net8.0 </TargetFramework >
5
5
<AssemblyName >Todo.Application</AssemblyName >
6
6
<RootNamespace >Alteridem.Todo.Application</RootNamespace >
7
7
<Company >Alteridem Consulting</Company >
8
8
<Product >Todo.txt command line utility application library</Product >
9
- <Copyright >Copyright (c) 2023 Rob Prouse</Copyright >
10
- <LangVersion >10 </LangVersion >
9
+ <Copyright >Copyright (c) 2025 Rob Prouse</Copyright >
10
+ <LangVersion >12 </LangVersion >
11
11
</PropertyGroup >
12
12
13
13
<!-- Make Internals visible to the unit tests -->
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >netstandard2.1 </TargetFramework >
4
+ <TargetFramework >net8.0 </TargetFramework >
5
5
<AssemblyName >Todo.Domain</AssemblyName >
6
6
<RootNamespace >Alteridem.Todo.Domain</RootNamespace >
7
7
<Company >Alteridem Consulting</Company >
8
8
<Product >Todo.txt command line utility domain library</Product >
9
- <Copyright >Copyright (c) 2023 Rob Prouse</Copyright >
10
- <LangVersion >10 </LangVersion >
9
+ <Copyright >Copyright (c) 2025 Rob Prouse</Copyright >
10
+ <LangVersion >12 </LangVersion >
11
11
</PropertyGroup >
12
12
13
13
</Project >
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public static IServiceCollection AddInfrastructure(this IServiceCollection servi
23
23
var options = new JsonSerializerOptions
24
24
{
25
25
AllowTrailingCommas = true ,
26
- IgnoreNullValues = true ,
26
+ DefaultIgnoreCondition = JsonIgnoreCondition . WhenWritingNull ,
27
27
ReadCommentHandling = JsonCommentHandling . Skip ,
28
28
PropertyNamingPolicy = JsonNamingPolicy . CamelCase ,
29
29
WriteIndented = true
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >netstandard2.1 </TargetFramework >
4
+ <TargetFramework >net8.0 </TargetFramework >
5
5
<AssemblyName >Todo.Infrastructure</AssemblyName >
6
6
<RootNamespace >Alteridem.Todo.Infrastructure</RootNamespace >
7
7
<Company >Alteridem Consulting</Company >
8
8
<Product >Todo.txt command line utility infrastructure library</Product >
9
- <Copyright >Copyright (c) 2023 Rob Prouse</Copyright >
10
- <LangVersion >10 </LangVersion >
9
+ <Copyright >Copyright (c) 2025 Rob Prouse</Copyright >
10
+ <LangVersion >12 </LangVersion >
11
11
</PropertyGroup >
12
12
13
13
<ItemGroup >
Original file line number Diff line number Diff line change 8
8
<Authors >Rob Prouse</Authors >
9
9
<Company >Alteridem Consulting</Company >
10
10
<Product >Todo.txt command line utility</Product >
11
- <Copyright >Copyright (c) 2024 Rob Prouse</Copyright >
11
+ <Copyright >Copyright (c) 2025 Rob Prouse</Copyright >
12
12
<PackageLicenseFile >LICENSE</PackageLicenseFile >
13
13
<PackageProjectUrl >https://github.com/rprouse/dotnet-todo</PackageProjectUrl >
14
14
<RepositoryUrl >https://github.com/rprouse/dotnet-todo</RepositoryUrl >
15
15
<PackageReadmeFile >Readme.md</PackageReadmeFile >
16
16
<PackageId >dotnet-todo</PackageId >
17
- <Version >0.6.4 </Version >
17
+ <Version >0.7.0 </Version >
18
18
<PackAsTool >true</PackAsTool >
19
19
<ToolCommandName >todo</ToolCommandName >
20
20
<PackageOutputPath >./nupkg</PackageOutputPath >
21
21
<RepositoryType >git</RepositoryType >
22
22
<Description >dotnet-todo is a .NET command line port of http://todotxt.org/ that tries to remain faithful to the command line and functionality of the original shell script wherever possible.</Description >
23
+ <LangVersion >12</LangVersion >
23
24
</PropertyGroup >
24
25
25
26
<ItemGroup >
Original file line number Diff line number Diff line change 4
4
<TargetFramework >net8.0</TargetFramework >
5
5
<IsPackable >false</IsPackable >
6
6
<RootNamespace >Alteridem.Todo.Tests</RootNamespace >
7
+ <LangVersion >12</LangVersion >
7
8
</PropertyGroup >
8
9
9
10
<ItemGroup >
You can’t perform that action at this time.
0 commit comments