diff --git a/gen_lib_nuspecs/Program.cs b/gen_lib_nuspecs/Program.cs index 8e9b41a4..2602984f 100644 --- a/gen_lib_nuspecs/Program.cs +++ b/gen_lib_nuspecs/Program.cs @@ -28,6 +28,7 @@ public enum TFM NET461, NET60, NET70, + NET80, MACCATALYST, XAMARINMAC20, } @@ -46,6 +47,7 @@ public static string AsString(this TFM e) case TFM.NET461: return "net461"; case TFM.NET60: return "net6.0"; case TFM.NET70: return "net7.0"; + case TFM.NET80: return "net8.0"; case TFM.MACCATALYST: return "net6.0-maccatalyst15.2"; case TFM.XAMARINMAC20: return "xamarin.mac20"; default: @@ -416,6 +418,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); } static void write_nuspec_wasm_targets_file_entry( @@ -523,6 +526,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); // TODO need a comment here to explain these common.write_empty(f, TFM.NET461); @@ -582,6 +586,7 @@ private static void gen_nuspec_lib_e_sqlcipher(string dir_src) write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLCIPHER, TFM.NET60, f); write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLCIPHER, TFM.NET70, f); + write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLCIPHER, TFM.NET80, 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 14a8365c..14735d98 100644 --- a/src/SQLitePCLRaw.lib.e_sqlcipher/SQLitePCLRaw.lib.e_sqlcipher.nuspec +++ b/src/SQLitePCLRaw.lib.e_sqlcipher/SQLitePCLRaw.lib.e_sqlcipher.nuspec @@ -43,9 +43,11 @@ + + diff --git a/src/SQLitePCLRaw.lib.e_sqlcipher/net8.0/SQLitePCLRaw.lib.e_sqlcipher.targets b/src/SQLitePCLRaw.lib.e_sqlcipher/net8.0/SQLitePCLRaw.lib.e_sqlcipher.targets new file mode 100644 index 00000000..efcc349e --- /dev/null +++ b/src/SQLitePCLRaw.lib.e_sqlcipher/net8.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 fdd80080..6fc2729b 100644 --- a/src/SQLitePCLRaw.lib.e_sqlite3/SQLitePCLRaw.lib.e_sqlite3.nuspec +++ b/src/SQLitePCLRaw.lib.e_sqlite3/SQLitePCLRaw.lib.e_sqlite3.nuspec @@ -43,9 +43,11 @@ + + diff --git a/src/SQLitePCLRaw.lib.e_sqlite3/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets b/src/SQLitePCLRaw.lib.e_sqlite3/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets new file mode 100644 index 00000000..5b7c884f --- /dev/null +++ b/src/SQLitePCLRaw.lib.e_sqlite3/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file