TestApp.csproj 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
  2. <PropertyGroup>
  3. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5. <ProductVersion>8.0.50727</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <ProjectGuid>{29760952-9F43-460E-9D0E-B877FF8D2061}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>TestApp</RootNamespace>
  11. <AssemblyName>TestApp</AssemblyName>
  12. <FileUpgradeFlags>
  13. </FileUpgradeFlags>
  14. <UpgradeBackupLocation>
  15. </UpgradeBackupLocation>
  16. <OldToolsVersion>2.0</OldToolsVersion>
  17. <PublishUrl>publish\</PublishUrl>
  18. <Install>true</Install>
  19. <InstallFrom>Disk</InstallFrom>
  20. <UpdateEnabled>false</UpdateEnabled>
  21. <UpdateMode>Foreground</UpdateMode>
  22. <UpdateInterval>7</UpdateInterval>
  23. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  24. <UpdatePeriodically>false</UpdatePeriodically>
  25. <UpdateRequired>false</UpdateRequired>
  26. <MapFileExtensions>true</MapFileExtensions>
  27. <ApplicationRevision>0</ApplicationRevision>
  28. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  29. <IsWebBootstrapper>false</IsWebBootstrapper>
  30. <UseApplicationTrust>false</UseApplicationTrust>
  31. <BootstrapperEnabled>true</BootstrapperEnabled>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  34. <DebugSymbols>true</DebugSymbols>
  35. <DebugType>full</DebugType>
  36. <Optimize>false</Optimize>
  37. <OutputPath>bin\Debug\</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. <PlatformTarget>x86</PlatformTarget>
  42. </PropertyGroup>
  43. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  44. <DebugType>pdbonly</DebugType>
  45. <Optimize>true</Optimize>
  46. <OutputPath>bin\Release\</OutputPath>
  47. <DefineConstants>TRACE</DefineConstants>
  48. <ErrorReport>prompt</ErrorReport>
  49. <WarningLevel>4</WarningLevel>
  50. <PlatformTarget>x86</PlatformTarget>
  51. </PropertyGroup>
  52. <ItemGroup>
  53. <Reference Include="System" />
  54. <Reference Include="System.Data" />
  55. <Reference Include="System.Drawing" />
  56. <Reference Include="System.Windows.Forms" />
  57. <Reference Include="System.Xml" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="Form1.cs">
  61. <SubType>Form</SubType>
  62. </Compile>
  63. <Compile Include="Form1.Designer.cs">
  64. <DependentUpon>Form1.cs</DependentUpon>
  65. </Compile>
  66. <Compile Include="Program.cs" />
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. <EmbeddedResource Include="Form1.resx">
  69. <SubType>Designer</SubType>
  70. <DependentUpon>Form1.cs</DependentUpon>
  71. </EmbeddedResource>
  72. <EmbeddedResource Include="Properties\Resources.resx">
  73. <Generator>ResXFileCodeGenerator</Generator>
  74. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  75. <SubType>Designer</SubType>
  76. </EmbeddedResource>
  77. <Compile Include="Properties\Resources.Designer.cs">
  78. <AutoGen>True</AutoGen>
  79. <DependentUpon>Resources.resx</DependentUpon>
  80. <DesignTime>True</DesignTime>
  81. </Compile>
  82. <None Include="Properties\Settings.settings">
  83. <Generator>SettingsSingleFileGenerator</Generator>
  84. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  85. </None>
  86. <Compile Include="Properties\Settings.Designer.cs">
  87. <AutoGen>True</AutoGen>
  88. <DependentUpon>Settings.settings</DependentUpon>
  89. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  90. </Compile>
  91. </ItemGroup>
  92. <ItemGroup>
  93. <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
  94. <Visible>False</Visible>
  95. <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
  96. <Install>true</Install>
  97. </BootstrapperPackage>
  98. <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
  99. <Visible>False</Visible>
  100. <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
  101. <Install>false</Install>
  102. </BootstrapperPackage>
  103. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
  104. <Visible>False</Visible>
  105. <ProductName>.NET Framework 3.5</ProductName>
  106. <Install>false</Install>
  107. </BootstrapperPackage>
  108. </ItemGroup>
  109. <ItemGroup>
  110. <ProjectReference Include="..\SQLiteClient\System.Data.SQLiteClient.csproj">
  111. <Project>{1ABEE43D-C5C8-4BC8-A95F-6784264E2EC6}</Project>
  112. <Name>System.Data.SQLiteClient</Name>
  113. </ProjectReference>
  114. </ItemGroup>
  115. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  116. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  117. Other similar extension points exist, see Microsoft.Common.targets.
  118. <Target Name="BeforeBuild">
  119. </Target>
  120. <Target Name="AfterBuild">
  121. </Target>
  122. -->
  123. </Project>