This repository was archived by the owner on Dec 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 611
Expand file tree
/
Copy pathServiceStack.OrmLite.Oracle.csproj
More file actions
115 lines (115 loc) · 5.17 KB
/
Copy pathServiceStack.OrmLite.Oracle.csproj
File metadata and controls
115 lines (115 loc) · 5.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
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
109
110
111
112
113
114
115
<?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>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
</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>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<UseVSHostingProcess>false</UseVSHostingProcess>
<DebugSymbols>true</DebugSymbols>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
<OutputPath>bin\Signed\</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="ServiceStack.Text">
<HintPath>..\..\lib\ServiceStack.Text.dll</HintPath>
</Reference>
<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.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Converters\OracleBoolConverter.cs" />
<Compile Include="Converters\OracleByteArrayConverter.cs" />
<Compile Include="Converters\OracleCharArrayConverter.cs" />
<Compile Include="Converters\OracleDateTimeConverter.cs" />
<Compile Include="Converters\OracleDateTimeOffsetConverter.cs" />
<Compile Include="Converters\OracleEnumConverter.cs" />
<Compile Include="Converters\OracleFloatConverters.cs" />
<Compile Include="Converters\OracleGuidConverter.cs" />
<Compile Include="Converters\OracleIntegerConverters.cs" />
<Compile Include="Converters\OracleStringConverters.cs" />
<Compile Include="Converters\OracleTimeSpanAsIntConverter.cs" />
<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="OracleConnection.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="OracleCommand.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="OracleDataReader.cs" />
<Compile Include="OracleDialect.cs" />
<Compile Include="OracleExecFilter.cs" />
<Compile Include="OracleNamingStrategy.cs" />
<Compile Include="OracleTimestampConverter.cs" />
<Compile Include="OracleValue.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="OracleSqlExpression.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>
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" />
</Project>