Skip to content

Commit 70ed005

Browse files
committed
fix build
1 parent 9e9fd97 commit 70ed005

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<Copyright>Copyright 2014-2025 SourceGear, LLC</Copyright>
55
<Company>SourceGear</Company>
66
<Authors>Eric Sink</Authors>
7-
<Version>3.0.3-pre20260430123710</Version>
8-
<AssemblyVersion>3.0.3.3041</AssemblyVersion>
9-
<FileVersion>3.0.3.3041</FileVersion>
7+
<Version>3.0.3-pre20260506151441</Version>
8+
<AssemblyVersion>3.0.3.3047</AssemblyVersion>
9+
<FileVersion>3.0.3.3047</FileVersion>
1010
<Description>SQLitePCLRaw is a Portable Class Library (PCL) for low-level (raw) access to SQLite</Description>
1111
<ProviderLangVersion>10.0</ProviderLangVersion>
1212
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>

src/common/fake_xunit.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ public static void DoesNotContain(string sub, string actual)
6464
count++;
6565
if (actual.Contains(sub)) throw new Exception($"expected that {actual} not contain {sub}");
6666
}
67+
public static void Same(object expected, object actual)
68+
{
69+
count++;
70+
if (!Object.ReferenceEquals(expected, actual)) throw new Exception($"expected ReferenceEquals {expected} but actual {actual}");
71+
}
6772
public static void Equal<T>(T expected, T actual)
6873
where T : class
6974
{

src/common/tests_xunit.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,8 @@ public void test_get_or_create_extra_returns_same_instance_under_contention()
387387
Assert.Same(instances[0], instances[i]);
388388
}
389389
}
390+
}
391+
390392
// Regression test for the ArgumentOutOfRangeException variant of the
391393
// long-standing prepare-race bug class (see issues #108, #321, #430,
392394
// #479, #588). The provider's span overload of sqlite3_prepare_v2

0 commit comments

Comments
 (0)