forked from ServiceStack/ServiceStack.OrmLite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.OrmLite.Oracle.csproj
More file actions
76 lines (76 loc) · 3.17 KB
/
Copy pathServiceStack.OrmLite.Oracle.csproj
File metadata and controls
76 lines (76 loc) · 3.17 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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.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>{517B64BA-D7A6-4A15-8719-821B38147C61}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ServiceStack.OrmLite.Oracle</RootNamespace>
<AssemblyName>ServiceStack.OrmLite.Oracle</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="ServiceStack.Common">
<HintPath>..\..\lib\ServiceStack.Common.dll</HintPath>
</Reference>
<Reference Include="ServiceStack.Interfaces">
<HintPath>..\..\lib\ServiceStack.Interfaces.dll</HintPath>
</Reference>
<Reference Include="System.Data.OracleClient" />
</ItemGroup>
<ItemGroup>
<Compile Include="DbSchema\IColumn.cs" />
<Compile Include="DbSchema\IParameter.cs" />
<Compile Include="DbSchema\IProcedure.cs" />
<Compile Include="DbSchema\ISchema.cs" />
<Compile Include="DbSchema\ITable.cs" />
<Compile Include="DbSchema\ParameterDirection.cs" />
<Compile Include="DbSchema\PocoCreator.cs" />
<Compile Include="DbSchema\ProcedureType.cs" />
<Compile Include="Oracle.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="OracleOrmLiteDialectProvider.cs" />
<Compile Include="OraSchema\ClassWriter.cs" />
<Compile Include="OraSchema\Column.cs" />
<Compile Include="OraSchema\Parameter.cs" />
<Compile Include="OraSchema\Procedure.cs" />
<Compile Include="OraSchema\Schema.cs" />
<Compile Include="OraSchema\Table.cs" />
<Compile Include="OracleSqlExpressionVisitor.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.OrmLite\ServiceStack.OrmLite.csproj">
<Project>{96179AC6-F6F1-40C3-9FDD-4F6582F54C5C}</Project>
<Name>ServiceStack.OrmLite</Name>
</ProjectReference>
</ItemGroup>
</Project>