diff --git a/gen_lib_nuspecs/Program.cs b/gen_lib_nuspecs/Program.cs
index 7687e6a8..11fc3b9b 100644
--- a/gen_lib_nuspecs/Program.cs
+++ b/gen_lib_nuspecs/Program.cs
@@ -29,6 +29,7 @@ public enum TFM
NET60,
NET70,
NET80,
+ NET90,
MACCATALYST,
XAMARINMAC20,
}
@@ -48,6 +49,7 @@ public static string AsString(this TFM e)
case TFM.NET60: return "net6.0";
case TFM.NET70: return "net7.0";
case TFM.NET80: return "net8.0";
+ case TFM.NET90: return "net9.0";
case TFM.MACCATALYST: return "net6.0-maccatalyst15.2";
case TFM.XAMARINMAC20: return "xamarin.mac20";
default:
@@ -422,6 +424,7 @@ XmlWriter f
write_nuspec_file_entry_native_wasm(lib, TFM.NET60, f);
write_nuspec_file_entry_native_wasm(lib, TFM.NET70, f);
write_nuspec_file_entry_native_wasm(lib, TFM.NET80, f);
+ write_nuspec_file_entry_native_wasm(lib, TFM.NET90, f);
}
static void write_nuspec_wasm_targets_file_entry(
@@ -530,6 +533,7 @@ private static void gen_nuspec_lib_e_sqlite3(string dir_src)
write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLITE3, TFM.NET60, f);
write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLITE3, TFM.NET70, f);
write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLITE3, TFM.NET80, f);
+ write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLITE3, TFM.NET90, f);
// TODO need a comment here to explain these
common.write_empty(f, TFM.NET461);
diff --git a/src/SQLitePCLRaw.lib.e_sqlcipher/SQLitePCLRaw.lib.e_sqlcipher.nuspec b/src/SQLitePCLRaw.lib.e_sqlcipher/SQLitePCLRaw.lib.e_sqlcipher.nuspec
index 640ffd57..fb0cd834 100644
--- a/src/SQLitePCLRaw.lib.e_sqlcipher/SQLitePCLRaw.lib.e_sqlcipher.nuspec
+++ b/src/SQLitePCLRaw.lib.e_sqlcipher/SQLitePCLRaw.lib.e_sqlcipher.nuspec
@@ -41,10 +41,12 @@
+
+
diff --git a/src/SQLitePCLRaw.lib.e_sqlcipher/net9.0/SQLitePCLRaw.lib.e_sqlcipher.targets b/src/SQLitePCLRaw.lib.e_sqlcipher/net9.0/SQLitePCLRaw.lib.e_sqlcipher.targets
new file mode 100644
index 00000000..8bf88b13
--- /dev/null
+++ b/src/SQLitePCLRaw.lib.e_sqlcipher/net9.0/SQLitePCLRaw.lib.e_sqlcipher.targets
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/SQLitePCLRaw.lib.e_sqlite3/SQLitePCLRaw.lib.e_sqlite3.nuspec b/src/SQLitePCLRaw.lib.e_sqlite3/SQLitePCLRaw.lib.e_sqlite3.nuspec
index 99b3c2b4..9c75ebdd 100644
--- a/src/SQLitePCLRaw.lib.e_sqlite3/SQLitePCLRaw.lib.e_sqlite3.nuspec
+++ b/src/SQLitePCLRaw.lib.e_sqlite3/SQLitePCLRaw.lib.e_sqlite3.nuspec
@@ -41,10 +41,12 @@
+
+
diff --git a/src/SQLitePCLRaw.lib.e_sqlite3/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets b/src/SQLitePCLRaw.lib.e_sqlite3/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets
new file mode 100644
index 00000000..419d31e4
--- /dev/null
+++ b/src/SQLitePCLRaw.lib.e_sqlite3/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file