SQLiteMobileTest.csproj 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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>{CF7909CA-348B-4276-A41E-9EA07962B9FA}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>SQLiteTest</RootNamespace>
  11. <AssemblyName>SQLiteTest</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>SQLiteTest</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. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DefineConstants>TRACE;$(PlatformFamilyName)</DefineConstants>
  37. <NoStdLib>true</NoStdLib>
  38. <NoConfig>true</NoConfig>
  39. <FileAlignment>512</FileAlignment>
  40. <WarningLevel>4</WarningLevel>
  41. <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="mscorlib" />
  45. <Reference Include="System" />
  46. <Reference Include="System.Data" />
  47. <Reference Include="System.Drawing" />
  48. <Reference Include="System.Windows.Forms" />
  49. <Reference Include="System.Xml" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="Form1.cs">
  53. <SubType>Form</SubType>
  54. </Compile>
  55. <Compile Include="Properties\AssemblyInfo.cs" />
  56. <Compile Include="Properties\Resources.cs">
  57. <AutoGen>True</AutoGen>
  58. <DependentUpon>Resources.resx</DependentUpon>
  59. </Compile>
  60. <EmbeddedResource Include="Form1.resx">
  61. <SubType>Designer</SubType>
  62. <DependentUpon>Form1.cs</DependentUpon>
  63. </EmbeddedResource>
  64. <EmbeddedResource Include="Properties\Resources.resx">
  65. <Generator>ResXFileCodeGenerator</Generator>
  66. <LastGenOutput>Resources.cs</LastGenOutput>
  67. <SubType>Designer</SubType>
  68. </EmbeddedResource>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <ProjectReference Include="..\SQLiteClient\System.Data.SQLiteClient.csproj">
  72. <Project>{1ABEE43D-C5C8-4BC8-A95F-6784264E2EC6}</Project>
  73. <Name>System.Data.SQLiteClient</Name>
  74. </ProjectReference>
  75. </ItemGroup>
  76. <Import Condition="'$(TargetFrameworkVersion)' == 'v1.0'" Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.v1.targets" />
  77. <Import Condition="'$(TargetFrameworkVersion)' == 'v2.0'" Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
  78. <ProjectExtensions>
  79. <VisualStudio>
  80. <FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
  81. <HostingProcess disable="1" />
  82. </FlavorProperties>
  83. </VisualStudio>
  84. </ProjectExtensions>
  85. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  86. Other similar extension points exist, see Microsoft.Common.targets.
  87. <Target Name="BeforeBuild">
  88. </Target>
  89. <Target Name="AfterBuild">
  90. </Target>
  91. -->
  92. </Project>