nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1From 4b97c8cc49ee2068198bbfaa7eacb17cf1cf067c Mon Sep 17 00:00:00 2001
2From: Eric Helgeson <erichelgeson@gmail.com>
3Date: Fri, 22 Aug 2025 10:05:56 -0500
4Subject: [PATCH] Retarget to .NET 8
5
6---
7 AppCommon/AppCommon.csproj | 2 +-
8 CommonUtil/CommonUtil.csproj | 2 +-
9 DiskArc/DiskArc.csproj | 2 +-
10 DiskArcTests/DiskArcTests.csproj | 2 +-
11 Examples/AddFile/AddFile.csproj | 2 +-
12 Examples/ListContents/ListContents.csproj | 2 +-
13 FileConv/FileConv.csproj | 2 +-
14 FileConvTests/FileConvTests.csproj | 2 +-
15 MakeDist/MakeDist.csproj | 2 +-
16 cp2/cp2.csproj | 2 +-
17 cp2_wpf/cp2_wpf.csproj | 2 +-
18 11 files changed, 11 insertions(+), 11 deletions(-)
19
20diff --git a/AppCommon/AppCommon.csproj b/AppCommon/AppCommon.csproj
21index 48e8e5c..1e58dc6 100644
22--- a/AppCommon/AppCommon.csproj
23+++ b/AppCommon/AppCommon.csproj
24@@ -1,7 +1,7 @@
25 <Project Sdk="Microsoft.NET.Sdk">
26
27 <PropertyGroup>
28- <TargetFramework>net6.0</TargetFramework>
29+ <TargetFramework>net8.0</TargetFramework>
30 <ImplicitUsings>enable</ImplicitUsings>
31 <Nullable>enable</Nullable>
32 </PropertyGroup>
33diff --git a/CommonUtil/CommonUtil.csproj b/CommonUtil/CommonUtil.csproj
34index 132c02c..30402ac 100644
35--- a/CommonUtil/CommonUtil.csproj
36+++ b/CommonUtil/CommonUtil.csproj
37@@ -1,7 +1,7 @@
38 <Project Sdk="Microsoft.NET.Sdk">
39
40 <PropertyGroup>
41- <TargetFramework>net6.0</TargetFramework>
42+ <TargetFramework>net8.0</TargetFramework>
43 <ImplicitUsings>enable</ImplicitUsings>
44 <Nullable>enable</Nullable>
45 </PropertyGroup>
46diff --git a/DiskArc/DiskArc.csproj b/DiskArc/DiskArc.csproj
47index a1c95f7..cc0baef 100644
48--- a/DiskArc/DiskArc.csproj
49+++ b/DiskArc/DiskArc.csproj
50@@ -1,7 +1,7 @@
51 <Project Sdk="Microsoft.NET.Sdk">
52
53 <PropertyGroup>
54- <TargetFramework>net6.0</TargetFramework>
55+ <TargetFramework>net8.0</TargetFramework>
56 <ImplicitUsings>enable</ImplicitUsings>
57 <Nullable>enable</Nullable>
58 </PropertyGroup>
59diff --git a/DiskArcTests/DiskArcTests.csproj b/DiskArcTests/DiskArcTests.csproj
60index 521776e..40db439 100644
61--- a/DiskArcTests/DiskArcTests.csproj
62+++ b/DiskArcTests/DiskArcTests.csproj
63@@ -1,7 +1,7 @@
64 <Project Sdk="Microsoft.NET.Sdk">
65
66 <PropertyGroup>
67- <TargetFramework>net6.0</TargetFramework>
68+ <TargetFramework>net8.0</TargetFramework>
69 <ImplicitUsings>enable</ImplicitUsings>
70 <Nullable>enable</Nullable>
71 </PropertyGroup>
72diff --git a/Examples/AddFile/AddFile.csproj b/Examples/AddFile/AddFile.csproj
73index 09d4137..690e75b 100644
74--- a/Examples/AddFile/AddFile.csproj
75+++ b/Examples/AddFile/AddFile.csproj
76@@ -2,7 +2,7 @@
77
78 <PropertyGroup>
79 <OutputType>Exe</OutputType>
80- <TargetFramework>net6.0</TargetFramework>
81+ <TargetFramework>net8.0</TargetFramework>
82 <ImplicitUsings>enable</ImplicitUsings>
83 <Nullable>enable</Nullable>
84 </PropertyGroup>
85diff --git a/Examples/ListContents/ListContents.csproj b/Examples/ListContents/ListContents.csproj
86index 1e27d16..ea1a510 100644
87--- a/Examples/ListContents/ListContents.csproj
88+++ b/Examples/ListContents/ListContents.csproj
89@@ -2,7 +2,7 @@
90
91 <PropertyGroup>
92 <OutputType>Exe</OutputType>
93- <TargetFramework>net6.0</TargetFramework>
94+ <TargetFramework>net8.0</TargetFramework>
95 <ImplicitUsings>enable</ImplicitUsings>
96 <Nullable>enable</Nullable>
97 </PropertyGroup>
98diff --git a/FileConv/FileConv.csproj b/FileConv/FileConv.csproj
99index 4c2e0e7..f44d628 100644
100--- a/FileConv/FileConv.csproj
101+++ b/FileConv/FileConv.csproj
102@@ -1,7 +1,7 @@
103 <Project Sdk="Microsoft.NET.Sdk">
104
105 <PropertyGroup>
106- <TargetFramework>net6.0</TargetFramework>
107+ <TargetFramework>net8.0</TargetFramework>
108 <ImplicitUsings>enable</ImplicitUsings>
109 <Nullable>enable</Nullable>
110 </PropertyGroup>
111diff --git a/FileConvTests/FileConvTests.csproj b/FileConvTests/FileConvTests.csproj
112index 48e8e5c..1e58dc6 100644
113--- a/FileConvTests/FileConvTests.csproj
114+++ b/FileConvTests/FileConvTests.csproj
115@@ -1,7 +1,7 @@
116 <Project Sdk="Microsoft.NET.Sdk">
117
118 <PropertyGroup>
119- <TargetFramework>net6.0</TargetFramework>
120+ <TargetFramework>net8.0</TargetFramework>
121 <ImplicitUsings>enable</ImplicitUsings>
122 <Nullable>enable</Nullable>
123 </PropertyGroup>
124diff --git a/MakeDist/MakeDist.csproj b/MakeDist/MakeDist.csproj
125index 7bcab19..69753a9 100644
126--- a/MakeDist/MakeDist.csproj
127+++ b/MakeDist/MakeDist.csproj
128@@ -2,7 +2,7 @@
129
130 <PropertyGroup>
131 <OutputType>Exe</OutputType>
132- <TargetFramework>net6.0</TargetFramework>
133+ <TargetFramework>net8.0</TargetFramework>
134 <ImplicitUsings>enable</ImplicitUsings>
135 <Nullable>enable</Nullable>
136 </PropertyGroup>
137diff --git a/cp2/cp2.csproj b/cp2/cp2.csproj
138index cdcac51..45234aa 100644
139--- a/cp2/cp2.csproj
140+++ b/cp2/cp2.csproj
141@@ -2,7 +2,7 @@
142
143 <PropertyGroup>
144 <OutputType>Exe</OutputType>
145- <TargetFramework>net6.0</TargetFramework>
146+ <TargetFramework>net8.0</TargetFramework>
147 <ImplicitUsings>enable</ImplicitUsings>
148 <Nullable>enable</Nullable>
149 <StartupObject>cp2.CP2Main</StartupObject>
150diff --git a/cp2_wpf/cp2_wpf.csproj b/cp2_wpf/cp2_wpf.csproj
151index bdfe5cc..9f5ed90 100644
152--- a/cp2_wpf/cp2_wpf.csproj
153+++ b/cp2_wpf/cp2_wpf.csproj
154@@ -2,7 +2,7 @@
155
156 <PropertyGroup>
157 <OutputType>WinExe</OutputType>
158- <TargetFramework>net6.0-windows</TargetFramework>
159+ <TargetFramework>net8.0-windows</TargetFramework>
160 <Nullable>enable</Nullable>
161 <UseWPF>true</UseWPF>
162 <AssemblyName>CiderPress2</AssemblyName>