Skip to content

Commit

Permalink
chg bundle_sqlite3 test to also target net461 and netcoreapp2.1, and …
Browse files Browse the repository at this point in the history
…add that test to the regular build. #325 and #356
  • Loading branch information
ericsink committed Aug 17, 2020
1 parent f8d01bf commit 88b77ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Copyright>Copyright 2014-2020 SourceGear, LLC</Copyright>
<Company>SourceGear</Company>
<Authors>Eric Sink</Authors>
<Version>2.0.4-pre20200817125223</Version>
<Version>2.0.4-pre20200817134814</Version>
<AssemblyVersion>2.0.4.959</AssemblyVersion>
<FileVersion>2.0.4.959</FileVersion>
<Description>SQLitePCLRaw is a Portable Class Library (PCL) for low-level (raw) access to SQLite</Description>
Expand Down
4 changes: 3 additions & 1 deletion build/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -166,17 +166,19 @@ let main argv =
exec "dotnet" "test" (Path.Combine(top, "test_nupkgs", "e_sqlite3", "real_xunit"))
exec "dotnet" "test" (Path.Combine(top, "test_nupkgs", "winsqlite3", "real_xunit"))
exec "dotnet" "test" (Path.Combine(top, "test_nupkgs", "e_sqlcipher", "real_xunit"))
// TODO do bundle_sqlite3 real_xunit here?

let fake_xunit_tfms = [
"netcoreapp2.1"
"netcoreapp3.0"
"netcoreapp3.1"
"net461"
]

let fake_xunit_dirs = [
"e_sqlite3"
"e_sqlcipher"
"winsqlite3"
"sqlite3"
]

for tfm in fake_xunit_tfms do
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFrameworks>netcoreapp2.1;net461;netcoreapp3.1</TargetFrameworks>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit 88b77ad

Please sign in to comment.