From 3e3a18d18306ba9f947acfe1b43be52dffbcce5d Mon Sep 17 00:00:00 2001 From: Jim P Date: Fri, 23 Jan 2026 12:31:43 -0500 Subject: [PATCH 1/3] Target .Net v10.0 --- src/DbfDataReader/DbfDataReader.csproj | 16 +++++++++------- .../PublishProfiles/FolderProfile.pubxml | 11 +++++++++++ .../DbfDataReader.Benchmarks.csproj | 6 +++--- .../DbfDataReader.Tests.csproj | 12 ++++++------ .../PublishProfiles/FolderProfile.pubxml | 11 +++++++++++ 5 files changed, 40 insertions(+), 16 deletions(-) create mode 100644 src/DbfDataReader/Properties/PublishProfiles/FolderProfile.pubxml create mode 100644 test/DbfDataReader.Tests/Properties/PublishProfiles/FolderProfile.pubxml diff --git a/src/DbfDataReader/DbfDataReader.csproj b/src/DbfDataReader/DbfDataReader.csproj index 53736bb..9225dbf 100644 --- a/src/DbfDataReader/DbfDataReader.csproj +++ b/src/DbfDataReader/DbfDataReader.csproj @@ -4,7 +4,7 @@ DbfDataReader is a small fast .Net Core library for reading dBase, xBase, Clipper and FoxPro database files Copyright Chris Richards Chris Richards - net6.0;netstandard2.1 + DbfDataReader DbfDataReader dbf;dBase;xBase;Clipper;FoxPro @@ -18,22 +18,24 @@ snupkg true v + net10.0 - - + + + - - + + - - + + diff --git a/src/DbfDataReader/Properties/PublishProfiles/FolderProfile.pubxml b/src/DbfDataReader/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..050e099 --- /dev/null +++ b/src/DbfDataReader/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,11 @@ + + + + + Release + Any CPU + bin\Release\net10.0\publish\ + FileSystem + <_TargetId>Folder + + \ No newline at end of file diff --git a/test/DbfDataReader.Benchmarks/DbfDataReader.Benchmarks.csproj b/test/DbfDataReader.Benchmarks/DbfDataReader.Benchmarks.csproj index 7902ab6..a0d9260 100644 --- a/test/DbfDataReader.Benchmarks/DbfDataReader.Benchmarks.csproj +++ b/test/DbfDataReader.Benchmarks/DbfDataReader.Benchmarks.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net10.0 @@ -15,8 +15,8 @@ - - + + diff --git a/test/DbfDataReader.Tests/DbfDataReader.Tests.csproj b/test/DbfDataReader.Tests/DbfDataReader.Tests.csproj index 0508efd..866bb4e 100644 --- a/test/DbfDataReader.Tests/DbfDataReader.Tests.csproj +++ b/test/DbfDataReader.Tests/DbfDataReader.Tests.csproj @@ -2,7 +2,7 @@ DbfDataReader.Tests - net6.0 + net10.0 DbfDataReader.Tests DbfDataReader.Tests @@ -12,14 +12,14 @@ - - - + + + all runtime; build; native; contentfiles; analyzers - - + + diff --git a/test/DbfDataReader.Tests/Properties/PublishProfiles/FolderProfile.pubxml b/test/DbfDataReader.Tests/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..050e099 --- /dev/null +++ b/test/DbfDataReader.Tests/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,11 @@ + + + + + Release + Any CPU + bin\Release\net10.0\publish\ + FileSystem + <_TargetId>Folder + + \ No newline at end of file From 48705e0955d371190f5c5d2295b4ecd36ba6dff4 Mon Sep 17 00:00:00 2001 From: Jim P Date: Wed, 28 Jan 2026 08:13:47 -0500 Subject: [PATCH 2/3] Removed Publish profile, added it to .gitignore --- .gitignore | 1 + .../Properties/PublishProfiles/FolderProfile.pubxml | 11 ----------- 2 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 src/DbfDataReader/Properties/PublishProfiles/FolderProfile.pubxml diff --git a/.gitignore b/.gitignore index 6df3d1c..f0649aa 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ project.fragment.lock.json artifacts/ **/Properties/launchSettings.json /test/DbfDataReader.Benchmarks/BenchmarkDotNet.Artifacts/results +**/Properties/PublishProfiles \ No newline at end of file diff --git a/src/DbfDataReader/Properties/PublishProfiles/FolderProfile.pubxml b/src/DbfDataReader/Properties/PublishProfiles/FolderProfile.pubxml deleted file mode 100644 index 050e099..0000000 --- a/src/DbfDataReader/Properties/PublishProfiles/FolderProfile.pubxml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Release - Any CPU - bin\Release\net10.0\publish\ - FileSystem - <_TargetId>Folder - - \ No newline at end of file From c54401223665e06eded0380d5c044ab3d7bef9f6 Mon Sep 17 00:00:00 2001 From: Jim P Date: Wed, 28 Jan 2026 08:15:54 -0500 Subject: [PATCH 3/3] Removed Publish profile from Test project --- .../Properties/PublishProfiles/FolderProfile.pubxml | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 test/DbfDataReader.Tests/Properties/PublishProfiles/FolderProfile.pubxml diff --git a/test/DbfDataReader.Tests/Properties/PublishProfiles/FolderProfile.pubxml b/test/DbfDataReader.Tests/Properties/PublishProfiles/FolderProfile.pubxml deleted file mode 100644 index 050e099..0000000 --- a/test/DbfDataReader.Tests/Properties/PublishProfiles/FolderProfile.pubxml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Release - Any CPU - bin\Release\net10.0\publish\ - FileSystem - <_TargetId>Folder - - \ No newline at end of file