forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNpgsql.Tests.csproj
More file actions
108 lines (108 loc) · 4.61 KB
/
Npgsql.Tests.csproj
File metadata and controls
108 lines (108 loc) · 4.61 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<ProjectGuid>{E9C258D7-0D8E-4E6A-9857-5C6438591755}</ProjectGuid>
<RootNamespace>Npgsql.Tests</RootNamespace>
<Configuration Condition=" '$(Configuration)' == '' ">Debug-net45</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\Npgsql.snk</AssemblyOriginatorKeyFile>
<OutputType>Library</OutputType>
<AssemblyName>Npgsql.Tests</AssemblyName>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
<RestorePackages>true</RestorePackages>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-net45|AnyCPU' ">
<OutputPath>bin\Debug-net45\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<RootNamespace>
</RootNamespace>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DefineConstants>TRACE;DEBUG;NET45</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-net45|AnyCPU' ">
<OutputPath>bin\Release-net45\</OutputPath>
<RootNamespace>
</RootNamespace>
<Optimize>true</Optimize>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DefineConstants>TRACE;NET45</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="NLog">
<HintPath>..\..\packages\NLog.3.2.0.0\lib\net40\NLog.dll</HintPath>
</Reference>
<Reference Include="nunit.framework, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System" />
<Reference Include="System.Runtime.Serialization">
<RequiredTargetFramework>3.0</RequiredTargetFramework>
</Reference>
<Reference Include="System.Transactions" />
<Reference Include="System.Web" />
<Reference Include="System.Configuration" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ConnectionPoolTests.cs" />
<Compile Include="ConnectionStringBuilderTests.cs" />
<Compile Include="LargeObjectTests.cs" />
<Compile Include="NLogLoggingProvider.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SqlQueryParserTests.cs" />
<Compile Include="TransactionTests.cs" />
<Compile Include="Types\ArrayTests.cs" />
<Compile Include="AsyncTests.cs" />
<Compile Include="Types\BitStringTests.cs" />
<Compile Include="Types\ByteaTests.cs" />
<Compile Include="CopyTests.cs" />
<Compile Include="Types\DateTimeTests.cs" />
<Compile Include="FunctionTests.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="NpgsqlBufferTests.cs" />
<Compile Include="SecurityTests.cs" />
<Compile Include="Types\EnumTests.cs" />
<Compile Include="Types\GeometricTypeTests.cs" />
<Compile Include="Types\NetworkTypeTests.cs" />
<Compile Include="Types\NumericTypeTests.cs" />
<Compile Include="TestMetrics.cs" />
<Compile Include="TestBase.cs" />
<Compile Include="CommandTests.cs" />
<Compile Include="ConnectionTests.cs" />
<Compile Include="DataAdapterTests.cs" />
<Compile Include="ReaderTests.cs" />
<Compile Include="ExceptionTests.cs" />
<Compile Include="SpeedTests.cs" />
<Compile Include="NpgsqlParameterTests.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="SystemTransactionsTest.cs" />
<Compile Include="TestUtil.cs" />
<Compile Include="Types\MiscTypeTests.cs" />
<Compile Include="Types\TextTests.cs" />
<Compile Include="TypesTests.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Npgsql\Npgsql.csproj">
<Project>{9D13B739-62B1-4190-B386-7A9547304EB3}</Project>
<Name>Npgsql</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
</Project>