diff --git a/Directory.Build.props b/Directory.Build.props
index c363c6fe..5811f990 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -4,9 +4,9 @@
Copyright 2014-2022 SourceGear, LLC
SourceGear
Eric Sink
- 2.1.2-pre20220916160911
- 2.1.2.1719
- 2.1.2.1719
+ 2.1.2-pre20220918132332
+ 2.1.2.1721
+ 2.1.2.1721
SQLitePCLRaw is a Portable Class Library (PCL) for low-level (raw) access to SQLite
10.0
false
diff --git a/build/Program.fs b/build/Program.fs
index e32eb925..f5135d78 100644
--- a/build/Program.fs
+++ b/build/Program.fs
@@ -111,6 +111,11 @@ let main argv =
let args = sprintf "run --framework=%s" tfm
exec "dotnet" args (Path.Combine(top, "test_nupkgs", dir, "fake_xunit"))
+ if RuntimeInformation.IsOSPlatform(OSPlatform.Windows) then
+ let args = "run -f net6.0-windows -r win-x86 --no-self-contained"
+ exec "dotnet" args (Path.Combine(top, "test_nupkgs", "e_sqlite3", "fake_xunit"))
+ exec "dotnet" args (Path.Combine(top, "test_nupkgs", "e_sqlcipher", "fake_xunit"))
+
printfn "generating push.bat"
let bat = System.Collections.Generic.List()
for s in Directory.GetFiles(dir_nupkgs, "*.nupkg") do
diff --git a/test_nupkgs/e_sqlcipher/fake_xunit/e_sqlcipher_with_fake_xunit.csproj b/test_nupkgs/e_sqlcipher/fake_xunit/e_sqlcipher_with_fake_xunit.csproj
index 02412b9e..73fd51bb 100644
--- a/test_nupkgs/e_sqlcipher/fake_xunit/e_sqlcipher_with_fake_xunit.csproj
+++ b/test_nupkgs/e_sqlcipher/fake_xunit/e_sqlcipher_with_fake_xunit.csproj
@@ -1,6 +1,6 @@
- net461;netcoreapp3.1;net6.0
+ net461;netcoreapp3.1;net6.0;net6.0-windows
Exe
diff --git a/test_nupkgs/e_sqlite3/fake_xunit/e_sqlite3_with_fake_xunit.csproj b/test_nupkgs/e_sqlite3/fake_xunit/e_sqlite3_with_fake_xunit.csproj
index 77d01741..6f6ccc69 100644
--- a/test_nupkgs/e_sqlite3/fake_xunit/e_sqlite3_with_fake_xunit.csproj
+++ b/test_nupkgs/e_sqlite3/fake_xunit/e_sqlite3_with_fake_xunit.csproj
@@ -1,6 +1,6 @@
- net461;netcoreapp3.1;net6.0
+ net461;netcoreapp3.1;net6.0;net6.0-windows
Exe