-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSystem.Data.SQLite.Tests.csproj
More file actions
84 lines (84 loc) · 3.37 KB
/
System.Data.SQLite.Tests.csproj
File metadata and controls
84 lines (84 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{F3C729A0-E4B1-493B-8F9B-8DDE1A5092AD}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>System.Data.SQLite.Tests</RootNamespace>
<AssemblyName>System.Data.SQLite.Tests</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>..\..\Run\Tests\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>False</Optimize>
<OutputPath>..\..\Run\Tests\Release</OutputPath>
<DefineConstants>RELEASE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.Linq" />
<Reference Include="nunit.framework">
<HintPath>..\..\Dependencies\nunit.framework.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="SelectFixture.cs" />
<Compile Include="InsertFixture.cs" />
<Compile Include="ColumnConstraintViolationsFixture.cs" />
<Compile Include="ForeignKeyConstraintFixture.cs" />
<Compile Include="TableConstraintFixture.cs" />
<Compile Include="UpdateFixture.cs" />
<Compile Include="DeleteFixture.cs" />
<Compile Include="TriggerFixture.cs" />
<Compile Include="CollateFixture.cs" />
<Compile Include="TransactionFixture.cs" />
<Compile Include="ExpressionFixture.cs" />
<Compile Include="GroupAggregateFixture.cs" />
<Compile Include="JoinFixture.cs" />
<Compile Include="FunctionsFixture.cs" />
<Compile Include="SelectDataTypesFixture.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<None Include="Sql\People.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Sql\Shirts.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="App.config">
<SubType>Designer</SubType>
</None>
<None Include="Sql\Northwind.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\System.Data.SQLite\System.Data.SQLite.csproj">
<Project>{F1653F20-D47D-4F29-8C55-3C835542AF5F}</Project>
<Name>System.Data.SQLite</Name>
</ProjectReference>
</ItemGroup>
</Project>