Skip to content

Commit e29f3d1

Browse files
committed
try switching to the dotnet 9 sdk
1 parent 7521c27 commit e29f3d1

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Directory.Build.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Copyright>Copyright 2014-2025 SourceGear, LLC</Copyright>
55
<Company>SourceGear</Company>
66
<Authors>Eric Sink</Authors>
7-
<Version>3.0.0-pre20250106150515</Version>
7+
<Version>3.0.0-pre20250106155721</Version>
88
<AssemblyVersion>3.0.0.2562</AssemblyVersion>
99
<FileVersion>3.0.0.2562</FileVersion>
1010
<Description>SQLitePCLRaw is a Portable Class Library (PCL) for low-level (raw) access to SQLite</Description>
@@ -25,9 +25,9 @@
2525
<tfm_net>net8.0</tfm_net>
2626
<tfm_framework>net462</tfm_framework>
2727
<tfm_windows>net8.0-windows</tfm_windows>
28-
<tfm_ios>net8.0-ios</tfm_ios>
29-
<tfm_tvos>net8.0-tvos</tfm_tvos>
30-
<tfm_maccatalyst>net8.0-maccatalyst</tfm_maccatalyst>
28+
<tfm_ios>net8.0-ios18.0</tfm_ios>
29+
<tfm_tvos>net8.0-tvos18.0</tfm_tvos>
30+
<tfm_maccatalyst>net8.0-maccatalyst18.0</tfm_maccatalyst>
3131
<!--The NoNFloatUsing below is a workaround for xamarin/xamarin-macios/#14434-->
3232
<NoNFloatUsing>true</NoNFloatUsing>
3333
</PropertyGroup>

build/build.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.400",
3+
"version": "9.0.100",
44
"rollForward": "latestFeature"
55
}
66
}

version_stamp/version_stamp.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ private static void gen_directory_build_props(string root, string nupkgs_dir_nam
111111
f.WriteElementString("tfm_net", "net8.0");
112112
f.WriteElementString("tfm_framework", "net462");
113113
f.WriteElementString("tfm_windows", "net8.0-windows");
114-
f.WriteElementString("tfm_ios", "net8.0-ios");
115-
f.WriteElementString("tfm_tvos", "net8.0-tvos");
116-
f.WriteElementString("tfm_maccatalyst", "net8.0-maccatalyst17.2");
114+
f.WriteElementString("tfm_ios", "net8.0-ios18.0");
115+
f.WriteElementString("tfm_tvos", "net8.0-tvos18.0");
116+
f.WriteElementString("tfm_maccatalyst", "net8.0-maccatalyst18.0");
117117

118118
f.WriteComment("The NoNFloatUsing below is a workaround for xamarin/xamarin-macios/#14434");
119119
f.WriteElementString("NoNFloatUsing", "true");

version_stamp/version_stamp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>$(tfm_net)</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
</PropertyGroup>
77

88
</Project>

0 commit comments

Comments
 (0)