* Makefile.am:
[monodevelop.git] / extras / MonoDevelop.Database / MonoDevelop.Database.Sql / MonoDevelop.Database.Sql.csproj
blob577ec378a77595bef18240a0097f43bd840428ee
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>9.0.21022</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{04CA279D-CDAB-4A90-A78C-75EF8367AFD0}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <AssemblyName>MonoDevelop.Database.Sql</AssemblyName>
11 <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
12 </PropertyGroup>
13 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
14 <DebugSymbols>true</DebugSymbols>
15 <DebugType>full</DebugType>
16 <Optimize>true</Optimize>
17 <OutputPath>..\build</OutputPath>
18 <ErrorReport>prompt</ErrorReport>
19 <WarningLevel>4</WarningLevel>
20 <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
21 <Execution>
22 <Execution clr-version="Net_2_0" />
23 </Execution>
24 </PropertyGroup>
25 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26 <DebugType>none</DebugType>
27 <Optimize>true</Optimize>
28 <OutputPath>..\..\..\build\AddIns\MonoDevelop.Database</OutputPath>
29 <ErrorReport>prompt</ErrorReport>
30 <WarningLevel>4</WarningLevel>
31 <GenerateDocumentation>true</GenerateDocumentation>
32 <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
33 <Execution>
34 <Execution clr-version="Net_2_0" />
35 </Execution>
36 </PropertyGroup>
37 <ItemGroup>
38 <Reference Include="System" />
39 <Reference Include="System.Data" />
40 <Reference Include="System.Xml" />
41 <Reference Include="MonoDevelop.Components, Version=1.9.2.0, Culture=neutral">
42 <Package>monodevelop</Package>
43 </Reference>
44 <Reference Include="MonoDevelop.Core, Version=1.9.2.0, Culture=neutral">
45 <Package>monodevelop</Package>
46 </Reference>
47 <Reference Include="MonoDevelop.Core.Gui, Version=1.9.2.0, Culture=neutral">
48 <Package>monodevelop</Package>
49 </Reference>
50 <Reference Include="MonoDevelop.Ide, Version=1.9.2.0, Culture=neutral">
51 <Package>monodevelop</Package>
52 </Reference>
53 <Reference Include="MonoDevelop.Projects, Version=1.9.2.0, Culture=neutral">
54 <Package>monodevelop</Package>
55 </Reference>
56 <Reference Include="MonoDevelop.Projects.Gui, Version=1.9.2.0, Culture=neutral">
57 <Package>monodevelop</Package>
58 </Reference>
59 <Reference Include="NRefactory, Version=0.0.0.0, Culture=neutral">
60 <Package>monodevelop</Package>
61 </Reference>
62 <Reference Include="Mono.Addins, Version=0.4.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
63 <SpecificVersion>False</SpecificVersion>
64 </Reference>
65 <Reference Include="Mono.Cecil, Version=0.6.8.8607, Culture=neutral">
66 <Package>monodevelop</Package>
67 </Reference>
68 <Reference Include="Mono.TextEditor, Version=1.0.0.0, Culture=neutral">
69 <Package>monodevelop</Package>
70 </Reference>
71 <Reference Include="Mono.Debugging, Version=0.0.0.0, Culture=neutral">
72 <Package>monodevelop</Package>
73 </Reference>
74 </ItemGroup>
75 <ItemGroup>
76 <Compile Include="Providers\ISchemaProvider.cs" />
77 <Compile Include="Providers\IConnectionProvider.cs" />
78 <Compile Include="Schema\ISchema.cs" />
79 <Compile Include="Schema\AbstractSchema.cs" />
80 <Compile Include="Schema\AggregateSchema.cs" />
81 <Compile Include="Schema\CheckConstraintSchema.cs" />
82 <Compile Include="Schema\ColumnSchema.cs" />
83 <Compile Include="Schema\ConstraintSchema.cs" />
84 <Compile Include="Schema\DataTypeSchema.cs" />
85 <Compile Include="Schema\ForeignKeyConstraintSchema.cs" />
86 <Compile Include="Schema\GroupSchema.cs" />
87 <Compile Include="Schema\IndexSchema.cs" />
88 <Compile Include="Schema\LanguageSchema.cs" />
89 <Compile Include="Schema\OperatorSchema.cs" />
90 <Compile Include="Schema\ParameterSchema.cs" />
91 <Compile Include="Schema\PrimaryKeyConstraintSchema.cs" />
92 <Compile Include="Schema\PrivilegeSchema.cs" />
93 <Compile Include="Schema\ProcedureSchema.cs" />
94 <Compile Include="Schema\RoleSchema.cs" />
95 <Compile Include="Schema\RuleSchema.cs" />
96 <Compile Include="Schema\SchemaSchema.cs" />
97 <Compile Include="Schema\SequenceSchema.cs" />
98 <Compile Include="Schema\TableSchema.cs" />
99 <Compile Include="Schema\TriggerSchema.cs" />
100 <Compile Include="Schema\UniqueConstraintSchema.cs" />
101 <Compile Include="Schema\UserSchema.cs" />
102 <Compile Include="Schema\ViewSchema.cs" />
103 <Compile Include="Schema\DatabaseSchema.cs" />
104 <Compile Include="Providers\AbstractSchemaProvider.cs" />
105 <Compile Include="Codons\DbFactoryCodon.cs" />
106 <Compile Include="Schema\DataTypeCategory.cs" />
107 <Compile Include="Schema\Range.cs" />
108 <Compile Include="Dialect\Statements\SelectStatement.cs" />
109 <Compile Include="Dialect\Statements\InsertStatement.cs" />
110 <Compile Include="Dialect\Statements\DropStatement.cs" />
111 <Compile Include="Dialect\Statements\UpdateStatement.cs" />
112 <Compile Include="Dialect\Statements\DeleteStatement.cs" />
113 <Compile Include="Dialect\Statements\TruncateStatement.cs" />
114 <Compile Include="Dialect\Clauses\WhereClause.cs" />
115 <Compile Include="Dialect\Clauses\FromClause.cs" />
116 <Compile Include="Dialect\Clauses\HavingClause.cs" />
117 <Compile Include="Dialect\Clauses\JoinClause.cs" />
118 <Compile Include="Dialect\Clauses\GroupByClause.cs" />
119 <Compile Include="Dialect\Clauses\OrderByClause.cs" />
120 <Compile Include="Dialect\Clauses\UnionClause.cs" />
121 <Compile Include="IDbFactory.cs" />
122 <Compile Include="DbFactoryService.cs" />
123 <Compile Include="Dialect\ISqlDialect.cs" />
124 <Compile Include="Dialect\Statements\IStatement.cs" />
125 <Compile Include="Dialect\Expressions\IdentifierExpression.cs" />
126 <Compile Include="Dialect\Expressions\AliasedIdentifierExpression.cs" />
127 <Compile Include="Dialect\Expressions\IExpression.cs" />
128 <Compile Include="Dialect\Clauses\IClause.cs" />
129 <Compile Include="Dialect\Expressions\OperatorExpression.cs" />
130 <Compile Include="Dialect\Expressions\Operator.cs" />
131 <Compile Include="Dialect\Literals\StringLiteral.cs" />
132 <Compile Include="Dialect\Literals\ILiteral.cs" />
133 <Compile Include="Dialect\Literals\HexLiteral.cs" />
134 <Compile Include="Dialect\Literals\NumericLiteral.cs" />
135 <Compile Include="Dialect\Literals\NullLiteral.cs" />
136 <Compile Include="Dialect\Literals\BitLiteral.cs" />
137 <Compile Include="Dialect\Expressions\ParameterExpression.cs" />
138 <Compile Include="Dialect\Literals\TrueLiteral.cs" />
139 <Compile Include="Dialect\Literals\FalseLiteral.cs" />
140 <Compile Include="Dialect\Statements\DropStatementType.cs" />
141 <Compile Include="Dialect\Clauses\FromTableClause.cs" />
142 <Compile Include="Dialect\Clauses\FromSelectClause.cs" />
143 <Compile Include="Dialect\Clauses\JoinClauseType.cs" />
144 <Compile Include="Dialect\Expressions\BooleanExpression.cs" />
145 <Compile Include="Dialect\Expressions\BooleanOperator.cs" />
146 <Compile Include="Dialect\AbstractSqlDialect.cs" />
147 <Compile Include="Dialect\Expressions\IConditionalExpression.cs" />
148 <Compile Include="Dialect\Literals\BooleanLiteral.cs" />
149 <Compile Include="ConnectionContextService.cs" />
150 <Compile Include="ConnectionPool\IConnectionPool.cs" />
151 <Compile Include="ConnectionPool\IPooledDbConnection.cs" />
152 <Compile Include="ConnectionPool\DefaultConnectionPool.cs" />
153 <Compile Include="ConnectionPool\PooledDataReader.cs" />
154 <Compile Include="ConnectionPool\AbstractPooledDbConnection.cs" />
155 <Compile Include="ConnectionPool\PooledCommand.cs" />
156 <Compile Include="Providers\AbstractConnectionProvider.cs" />
157 <Compile Include="Configuration\DatabaseConnectionSettings.cs" />
158 <Compile Include="Configuration\DatabaseConnectionSettingsCollection.cs" />
159 <Compile Include="Configuration\DatabaseConnectionContext.cs" />
160 <Compile Include="Configuration\DatabaseConnectionContextEventArgs.cs" />
161 <Compile Include="ConnectionPool\FakeConnectionPool.cs" />
162 <Compile Include="QueryService.cs" />
163 <Compile Include="Configuration\DatabaseConnectionContextCollection.cs" />
164 <Compile Include="Schema\TriggerType.cs" />
165 <Compile Include="Schema\TriggerEvent.cs" />
166 <Compile Include="Schema\IndexSortType.cs" />
167 <Compile Include="Collections\TableSchemaCollection.cs" />
168 <Compile Include="Collections\UserSchemaCollection.cs" />
169 <Compile Include="Collections\ViewSchemaCollection.cs" />
170 <Compile Include="Collections\ConstraintSchemaCollection.cs" />
171 <Compile Include="Collections\TriggerSchemaCollection.cs" />
172 <Compile Include="Collections\ProcedureSchemaCollection.cs" />
173 <Compile Include="Collections\ColumnSchemaCollection.cs" />
174 <Compile Include="Collections\ParameterSchemaCollection.cs" />
175 <Compile Include="Collections\SortedCollectionBase.cs" />
176 <Compile Include="Collections\IPropertyComparer.cs" />
177 <Compile Include="Collections\DatabaseSchemaCollection.cs" />
178 <Compile Include="Collections\IndexSchemaCollection.cs" />
179 <Compile Include="Schema\ConstraintType.cs" />
180 <Compile Include="Collections\DataTypeSchemaCollection.cs" />
181 <Compile Include="Schema\ParameterType.cs" />
182 <Compile Include="Collections\SortedCollectionItemEventArgs.cs" />
183 <Compile Include="Providers\IGuiProvider.cs" />
184 <Compile Include="Schema\TriggerFireType.cs" />
185 <Compile Include="Schema\IndexType.cs" />
186 <Compile Include="Schema\ForeignKeyAction.cs" />
187 <Compile Include="AddinCatalog.cs" />
188 <Compile Include="AlterSchema\ColumnAlterSchema.cs" />
189 <Compile Include="AlterSchema\DatabaseAlterSchema.cs" />
190 <Compile Include="AlterSchema\UserAlterSchema.cs" />
191 <Compile Include="AlterSchema\IAlterSchema.cs" />
192 <Compile Include="AlterSchema\AbstractAlterSchema.cs" />
193 <Compile Include="AlterSchema\TableAlterSchema.cs" />
194 <Compile Include="AlterSchema\TriggerAlterSchema.cs" />
195 <Compile Include="AlterSchema\IndexAlterSchema.cs" />
196 <Compile Include="AlterSchema\PrimaryKeyConstraintAlterSchema.cs" />
197 <Compile Include="AlterSchema\ForeignKeyConstraintAlterSchema.cs" />
198 <Compile Include="AlterSchema\CheckConstraintAlterSchema.cs" />
199 <Compile Include="AlterSchema\UniqueConstraintAlterSchema.cs" />
200 <Compile Include="Providers\IEditSchemaProvider.cs" />
201 <Compile Include="AlterSchema\Alterations\DefaultAlterations.cs" />
202 <Compile Include="AlterSchema\Alterations\IAlteration.cs" />
203 <Compile Include="AlterSchema\Alterations\TriggerAlterations.cs" />
204 <Compile Include="AlterSchema\Alterations\ConstraintAlterations.cs" />
205 <Compile Include="Providers\AbstractEditSchemaProvider.cs" />
206 <Compile Include="Schema\SchemaType.cs" />
207 <Compile Include="Schema\SchemaActions.cs" />
208 <Compile Include="AlterSchema\ViewAlterSchema.cs" />
209 <Compile Include="AlterSchema\ProcedureAlterSchema.cs" />
210 <Compile Include="AlterSchema\Alterations\AbstractAlteration.cs" />
211 <Compile Include="AlterSchema\Alterations\TableAlterations.cs" />
212 <Compile Include="AlterSchema\Alterations\UserAlterations.cs" />
213 <Compile Include="AlterSchema\Alterations\ProcedureAlterations.cs" />
214 <Compile Include="AlterSchema\Alterations\ViewAlterations.cs" />
215 <Compile Include="AlterSchema\Alterations\IndexAlterations.cs" />
216 <Compile Include="AlterSchema\Alterations\ColumnAlterations.cs" />
217 <Compile Include="AssemblyInfo.cs" />
218 </ItemGroup>
219 <ItemGroup>
220 <EmbeddedResource Include="MonoDevelop.Database.Sql.addin.xml" />
221 </ItemGroup>
222 <ItemGroup>
223 <None Include="Makefile.am" />
224 </ItemGroup>
225 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
226 <ProjectExtensions>
227 <MonoDevelop>
228 <Properties>
229 <Deployment.LinuxDeployData generatePcFile="false" />
230 <MonoDevelop.Autotools.MakefileInfo IntegrationEnabled="true" RelativeMakefileName="Makefile.am" SyncReferences="true" IsAutotoolsProject="true" RelativeConfigureInPath="..">
231 <BuildFilesVar Sync="true" Name="FILES" />
232 <DeployFilesVar />
233 <ResourcesVar Sync="true" Name="RES" />
234 <OthersVar />
235 <GacRefVar Sync="true" Name="REFS" Prefix="-r:" />
236 <AsmRefVar Sync="true" Name="REFS" Prefix="-r:" />
237 <ProjectRefVar Sync="true" Name="REFS" Prefix="-r:" />
238 </MonoDevelop.Autotools.MakefileInfo>
239 </Properties>
240 </MonoDevelop>
241 </ProjectExtensions>
242 </Project>