Skip to content

Commit

Permalink
try switching to the dotnet 9 sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsink committed Jan 6, 2025
1 parent 7521c27 commit e29f3d1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Copyright>Copyright 2014-2025 SourceGear, LLC</Copyright>
<Company>SourceGear</Company>
<Authors>Eric Sink</Authors>
<Version>3.0.0-pre20250106150515</Version>
<Version>3.0.0-pre20250106155721</Version>
<AssemblyVersion>3.0.0.2562</AssemblyVersion>
<FileVersion>3.0.0.2562</FileVersion>
<Description>SQLitePCLRaw is a Portable Class Library (PCL) for low-level (raw) access to SQLite</Description>
Expand All @@ -25,9 +25,9 @@
<tfm_net>net8.0</tfm_net>
<tfm_framework>net462</tfm_framework>
<tfm_windows>net8.0-windows</tfm_windows>
<tfm_ios>net8.0-ios</tfm_ios>
<tfm_tvos>net8.0-tvos</tfm_tvos>
<tfm_maccatalyst>net8.0-maccatalyst</tfm_maccatalyst>
<tfm_ios>net8.0-ios18.0</tfm_ios>
<tfm_tvos>net8.0-tvos18.0</tfm_tvos>
<tfm_maccatalyst>net8.0-maccatalyst18.0</tfm_maccatalyst>
<!--The NoNFloatUsing below is a workaround for xamarin/xamarin-macios/#14434-->
<NoNFloatUsing>true</NoNFloatUsing>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion build/build.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.400",
"version": "9.0.100",
"rollForward": "latestFeature"
}
}
6 changes: 3 additions & 3 deletions version_stamp/version_stamp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ private static void gen_directory_build_props(string root, string nupkgs_dir_nam
f.WriteElementString("tfm_net", "net8.0");
f.WriteElementString("tfm_framework", "net462");
f.WriteElementString("tfm_windows", "net8.0-windows");
f.WriteElementString("tfm_ios", "net8.0-ios");
f.WriteElementString("tfm_tvos", "net8.0-tvos");
f.WriteElementString("tfm_maccatalyst", "net8.0-maccatalyst17.2");
f.WriteElementString("tfm_ios", "net8.0-ios18.0");
f.WriteElementString("tfm_tvos", "net8.0-tvos18.0");
f.WriteElementString("tfm_maccatalyst", "net8.0-maccatalyst18.0");

f.WriteComment("The NoNFloatUsing below is a workaround for xamarin/xamarin-macios/#14434");
f.WriteElementString("NoNFloatUsing", "true");
Expand Down
2 changes: 1 addition & 1 deletion version_stamp/version_stamp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>$(tfm_net)</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>

</Project>

0 comments on commit e29f3d1

Please sign in to comment.