File tree Expand file tree Collapse file tree 3 files changed +35
-0
lines changed
test_nupkgs/e_see/fake_xunit Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ let main argv =
71
71
72
72
let fake_xunit_dirs = [
73
73
yield " e_sqlite3"
74
+ yield " e_see"
74
75
//yield "e_sqlite3mc"
75
76
if RuntimeInformation.IsOSPlatform( OSPlatform.Windows) then yield " winsqlite3"
76
77
]
Original file line number Diff line number Diff line change
1
+
2
+ using System ;
3
+
4
+ public static class foo
5
+ {
6
+ public static int Main ( )
7
+ {
8
+ SQLitePCL . Batteries_V2 . Init ( ) ;
9
+ return Xunit . Run . AllTestsInCurrentAssembly ( ) ;
10
+ }
11
+ }
12
+
Original file line number Diff line number Diff line change
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+ <PropertyGroup >
3
+ <TargetFrameworks >$(tfm_framework);$(tfm_net);$(tfm_windows)</TargetFrameworks >
4
+ <OutputType >Exe</OutputType >
5
+ <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
6
+ <DefineConstants >$(DefineConstants);TEST_WITH_CRYPTO</DefineConstants >
7
+ </PropertyGroup >
8
+ <PropertyGroup Condition =" '$(TargetFramework)' == '$(tfm_framework)' " >
9
+ <RuntimeIdentifiers >win-x86;win-x64</RuntimeIdentifiers >
10
+ <RuntimeIdentifier >win-x64</RuntimeIdentifier >
11
+ </PropertyGroup >
12
+ <ItemGroup >
13
+ <PackageReference Include =" sqlitepclraw.config.e_sqlite3" Version =" $(pkg_version_for_testing)" />
14
+ <PackageReference Include =" SourceGear.SEE" Version =" 3.50.3" />
15
+ <PackageReference Include =" sqlitepclraw.ugly" Version =" $(pkg_version_for_testing)" />
16
+ </ItemGroup >
17
+ <ItemGroup >
18
+ <Compile Include =" ..\..\..\src\common\attrs_for_tests.cs" />
19
+ <Compile Include =" ..\..\..\src\common\fake_xunit.cs" />
20
+ <Compile Include =" ..\..\..\src\common\tests_xunit.cs" />
21
+ </ItemGroup >
22
+ </Project >
You can’t perform that action at this time.
0 commit comments