Skip to content

Commit a58b9f8

Browse files
committed
Merge branch 'master' of github.com:ericsink/SQLitePCL.raw
2 parents fd07a41 + 91458ab commit a58b9f8

5 files changed

Lines changed: 22 additions & 0 deletions

File tree

gen_lib_nuspecs/Program.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public enum TFM
2929
NET60,
3030
NET70,
3131
NET80,
32+
NET90,
3233
MACCATALYST,
3334
XAMARINMAC20,
3435
}
@@ -48,6 +49,7 @@ public static string AsString(this TFM e)
4849
case TFM.NET60: return "net6.0";
4950
case TFM.NET70: return "net7.0";
5051
case TFM.NET80: return "net8.0";
52+
case TFM.NET90: return "net9.0";
5153
case TFM.MACCATALYST: return "net6.0-maccatalyst15.2";
5254
case TFM.XAMARINMAC20: return "xamarin.mac20";
5355
default:
@@ -422,6 +424,7 @@ XmlWriter f
422424
write_nuspec_file_entry_native_wasm(lib, TFM.NET60, f);
423425
write_nuspec_file_entry_native_wasm(lib, TFM.NET70, f);
424426
write_nuspec_file_entry_native_wasm(lib, TFM.NET80, f);
427+
write_nuspec_file_entry_native_wasm(lib, TFM.NET90, f);
425428
}
426429

427430
static void write_nuspec_wasm_targets_file_entry(
@@ -530,6 +533,7 @@ private static void gen_nuspec_lib_e_sqlite3(string dir_src)
530533
write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLITE3, TFM.NET60, f);
531534
write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLITE3, TFM.NET70, f);
532535
write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLITE3, TFM.NET80, f);
536+
write_nuspec_wasm_targets_file_entry(dir_src, id, WhichLib.E_SQLITE3, TFM.NET90, f);
533537

534538
// TODO need a comment here to explain these
535539
common.write_empty(f, TFM.NET461);

src/SQLitePCLRaw.lib.e_sqlcipher/SQLitePCLRaw.lib.e_sqlcipher.nuspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,12 @@
4141
<file src="$cb_bin_path$\e_sqlcipher\wasm\net6.0\e_sqlcipher.a" target="runtimes\browser-wasm\nativeassets\net6.0\e_sqlcipher.a" />
4242
<file src="$cb_bin_path$\e_sqlcipher\wasm\net7.0\e_sqlcipher.a" target="runtimes\browser-wasm\nativeassets\net7.0\e_sqlcipher.a" />
4343
<file src="$cb_bin_path$\e_sqlcipher\wasm\net8.0\e_sqlcipher.a" target="runtimes\browser-wasm\nativeassets\net8.0\e_sqlcipher.a" />
44+
<file src="$cb_bin_path$\e_sqlcipher\wasm\net9.0\e_sqlcipher.a" target="runtimes\browser-wasm\nativeassets\net9.0\e_sqlcipher.a" />
4445
<file src=".\net461\SQLitePCLRaw.lib.e_sqlcipher.targets" target="buildTransitive\net461" />
4546
<file src=".\net6.0\SQLitePCLRaw.lib.e_sqlcipher.targets" target="buildTransitive\net6.0" />
4647
<file src=".\net7.0\SQLitePCLRaw.lib.e_sqlcipher.targets" target="buildTransitive\net7.0" />
4748
<file src=".\net8.0\SQLitePCLRaw.lib.e_sqlcipher.targets" target="buildTransitive\net8.0" />
49+
<file src=".\net9.0\SQLitePCLRaw.lib.e_sqlcipher.targets" target="buildTransitive\net9.0" />
4850
<!--empty directory in lib to avoid nuget adding a reference-->
4951
<file src="_._" target="lib/net461/_._" />
5052
<!--empty directory in lib to avoid nuget adding a reference-->
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--Automatically generated-->
3+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4+
<ItemGroup Condition=" '$(RuntimeIdentifier)' == 'browser-wasm' ">
5+
<NativeFileReference Include="$(MSBuildThisFileDirectory)..\..\runtimes\browser-wasm\nativeassets\net9.0\e_sqlcipher.a" />
6+
</ItemGroup>
7+
</Project>

src/SQLitePCLRaw.lib.e_sqlite3/SQLitePCLRaw.lib.e_sqlite3.nuspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,12 @@
4141
<file src="$cb_bin_path$\e_sqlite3\wasm\net6.0\e_sqlite3.a" target="runtimes\browser-wasm\nativeassets\net6.0\e_sqlite3.a" />
4242
<file src="$cb_bin_path$\e_sqlite3\wasm\net7.0\e_sqlite3.a" target="runtimes\browser-wasm\nativeassets\net7.0\e_sqlite3.a" />
4343
<file src="$cb_bin_path$\e_sqlite3\wasm\net8.0\e_sqlite3.a" target="runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a" />
44+
<file src="$cb_bin_path$\e_sqlite3\wasm\net9.0\e_sqlite3.a" target="runtimes\browser-wasm\nativeassets\net9.0\e_sqlite3.a" />
4445
<file src=".\net461\SQLitePCLRaw.lib.e_sqlite3.targets" target="buildTransitive\net461" />
4546
<file src=".\net6.0\SQLitePCLRaw.lib.e_sqlite3.targets" target="buildTransitive\net6.0" />
4647
<file src=".\net7.0\SQLitePCLRaw.lib.e_sqlite3.targets" target="buildTransitive\net7.0" />
4748
<file src=".\net8.0\SQLitePCLRaw.lib.e_sqlite3.targets" target="buildTransitive\net8.0" />
49+
<file src=".\net9.0\SQLitePCLRaw.lib.e_sqlite3.targets" target="buildTransitive\net9.0" />
4850
<!--empty directory in lib to avoid nuget adding a reference-->
4951
<file src="_._" target="lib/net461/_._" />
5052
<!--empty directory in lib to avoid nuget adding a reference-->
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--Automatically generated-->
3+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4+
<ItemGroup Condition=" '$(RuntimeIdentifier)' == 'browser-wasm' ">
5+
<NativeFileReference Include="$(MSBuildThisFileDirectory)..\..\runtimes\browser-wasm\nativeassets\net9.0\e_sqlite3.a" />
6+
</ItemGroup>
7+
</Project>

0 commit comments

Comments
 (0)