System.Data.SQLiteClient.csproj 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.50727</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{1ABEE43D-C5C8-4BC8-A95F-6784264E2EC6}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>System.Data.SQLiteClient</RootNamespace>
  11. <AssemblyName>System.Data.SQLiteClient</AssemblyName>
  12. <ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  13. <PlatformFamilyName>Smartphone</PlatformFamilyName>
  14. <PlatformID>4DE813A2-67E0-4a00-945C-3188240A8243</PlatformID>
  15. <OSVersion>4.20</OSVersion>
  16. <DeployDirSuffix>SQLiteClient</DeployDirSuffix>
  17. <TargetFrameworkVersion>v1.0</TargetFrameworkVersion>
  18. <FormFactorID>
  19. </FormFactorID>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <DebugSymbols>true</DebugSymbols>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE;$(PlatformFamilyName)</DefineConstants>
  26. <NoStdLib>true</NoStdLib>
  27. <NoConfig>true</NoConfig>
  28. <FileAlignment>512</FileAlignment>
  29. <WarningLevel>4</WarningLevel>
  30. <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
  31. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  34. <DebugType>pdbonly</DebugType>
  35. <Optimize>true</Optimize>
  36. <OutputPath>bin\Release\</OutputPath>
  37. <DefineConstants>TRACE;$(PlatformFamilyName)</DefineConstants>
  38. <NoStdLib>true</NoStdLib>
  39. <NoConfig>true</NoConfig>
  40. <FileAlignment>512</FileAlignment>
  41. <WarningLevel>4</WarningLevel>
  42. <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Reference Include="mscorlib" />
  46. <Reference Include="System" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Windows.Forms" />
  49. <Reference Include="System.Xml" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="Native\Enums.cs" />
  53. <Compile Include="Native\NativeMethods.cs" />
  54. <Compile Include="Native\SymbianMethods.cs" />
  55. <Compile Include="Native\WindowsMethods.cs" />
  56. <Compile Include="Native\SQLiteString.cs" />
  57. <Compile Include="SQLiteCommand.cs" />
  58. <Compile Include="SQLiteCommandCollection.cs" />
  59. <Compile Include="SQLiteConnection.cs" />
  60. <Compile Include="SQLiteConnectionStringBuilder.cs" />
  61. <Compile Include="SQLiteDataReader.cs" />
  62. <Compile Include="SQLiteException.cs" />
  63. <Compile Include="SQLiteStatement.cs" />
  64. <Compile Include="SQLiteParameter.cs" />
  65. <Compile Include="SQLiteParameterCollection.cs" />
  66. <Compile Include="Properties\AssemblyInfo.cs" />
  67. <Compile Include="SQLiteStatementCollection.cs" />
  68. <Compile Include="SQLiteTransaction.cs" />
  69. </ItemGroup>
  70. <Import Condition="'$(TargetFrameworkVersion)' == 'v1.0'" Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.v1.targets" />
  71. <Import Condition="'$(TargetFrameworkVersion)' == 'v2.0'" Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
  72. <ProjectExtensions>
  73. <VisualStudio>
  74. <FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
  75. <HostingProcess disable="1" />
  76. </FlavorProperties>
  77. </VisualStudio>
  78. </ProjectExtensions>
  79. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  80. Other similar extension points exist, see Microsoft.Common.targets.
  81. <Target Name="BeforeBuild">
  82. </Target>
  83. <Target Name="AfterBuild">
  84. </Target>
  85. -->
  86. </Project>