1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>8.0.50727</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{1ABEE43D-C5C8-4BC8-A95F-6784264E2EC6}</ProjectGuid>
- <OutputType>Library</OutputType>
- <RootNamespace>System.Data.SQLiteClient</RootNamespace>
- <AssemblyName>System.Data.SQLiteClient</AssemblyName>
- <ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <PlatformFamilyName>Smartphone</PlatformFamilyName>
- <PlatformID>4DE813A2-67E0-4a00-945C-3188240A8243</PlatformID>
- <OSVersion>4.20</OSVersion>
- <DeployDirSuffix>SQLiteClient</DeployDirSuffix>
- <TargetFrameworkVersion>v1.0</TargetFrameworkVersion>
- <FormFactorID>
- </FormFactorID>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;$(PlatformFamilyName)</DefineConstants>
- <NoStdLib>true</NoStdLib>
- <NoConfig>true</NoConfig>
- <FileAlignment>512</FileAlignment>
- <WarningLevel>4</WarningLevel>
- <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE;$(PlatformFamilyName)</DefineConstants>
- <NoStdLib>true</NoStdLib>
- <NoConfig>true</NoConfig>
- <FileAlignment>512</FileAlignment>
- <WarningLevel>4</WarningLevel>
- <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="mscorlib" />
- <Reference Include="System" />
- <Reference Include="System.Data" />
- <Reference Include="System.Windows.Forms" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Native\Enums.cs" />
- <Compile Include="Native\NativeMethods.cs" />
- <Compile Include="Native\SymbianMethods.cs" />
- <Compile Include="Native\WindowsMethods.cs" />
- <Compile Include="Native\SQLiteString.cs" />
- <Compile Include="SQLiteCommand.cs" />
- <Compile Include="SQLiteCommandCollection.cs" />
- <Compile Include="SQLiteConnection.cs" />
- <Compile Include="SQLiteConnectionStringBuilder.cs" />
- <Compile Include="SQLiteDataReader.cs" />
- <Compile Include="SQLiteException.cs" />
- <Compile Include="SQLiteStatement.cs" />
- <Compile Include="SQLiteParameter.cs" />
- <Compile Include="SQLiteParameterCollection.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="SQLiteStatementCollection.cs" />
- <Compile Include="SQLiteTransaction.cs" />
- </ItemGroup>
- <Import Condition="'$(TargetFrameworkVersion)' == 'v1.0'" Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.v1.targets" />
- <Import Condition="'$(TargetFrameworkVersion)' == 'v2.0'" Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
- <ProjectExtensions>
- <VisualStudio>
- <FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
- <HostingProcess disable="1" />
- </FlavorProperties>
- </VisualStudio>
- </ProjectExtensions>
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|