DbLinq.SQLite.Example.csproj 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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>9.0.30729</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <ProjectGuid>{DB89A450-3A57-420E-B784-911B83BEA99B}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>DbLinq.SQLite.Example</RootNamespace>
  11. <AssemblyName>DbLinq.SQLite.Example</AssemblyName>
  12. <StartupObject>
  13. </StartupObject>
  14. <FileUpgradeFlags>
  15. </FileUpgradeFlags>
  16. <OldToolsVersion>2.0</OldToolsVersion>
  17. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  18. <UpgradeBackupLocation>
  19. </UpgradeBackupLocation>
  20. <PublishUrl>publish\</PublishUrl>
  21. <Install>true</Install>
  22. <InstallFrom>Disk</InstallFrom>
  23. <UpdateEnabled>false</UpdateEnabled>
  24. <UpdateMode>Foreground</UpdateMode>
  25. <UpdateInterval>7</UpdateInterval>
  26. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  27. <UpdatePeriodically>false</UpdatePeriodically>
  28. <UpdateRequired>false</UpdateRequired>
  29. <MapFileExtensions>true</MapFileExtensions>
  30. <ApplicationRevision>0</ApplicationRevision>
  31. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  32. <IsWebBootstrapper>false</IsWebBootstrapper>
  33. <UseApplicationTrust>false</UseApplicationTrust>
  34. <BootstrapperEnabled>true</BootstrapperEnabled>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  37. <DebugSymbols>true</DebugSymbols>
  38. <DebugType>full</DebugType>
  39. <Optimize>false</Optimize>
  40. <OutputPath>bin\Debug\</OutputPath>
  41. <DefineConstants>TRACE;DEBUG;SQLITE</DefineConstants>
  42. <ErrorReport>prompt</ErrorReport>
  43. <WarningLevel>1</WarningLevel>
  44. </PropertyGroup>
  45. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  46. <DebugType>pdbonly</DebugType>
  47. <Optimize>true</Optimize>
  48. <OutputPath>bin\Release\</OutputPath>
  49. <DefineConstants>DEBUG;TRACE;SQLITE</DefineConstants>
  50. <ErrorReport>prompt</ErrorReport>
  51. <WarningLevel>4</WarningLevel>
  52. </PropertyGroup>
  53. <ItemGroup>
  54. <Reference Include="System" />
  55. <Reference Include="System.Core">
  56. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  57. </Reference>
  58. <Reference Include="System.Data" />
  59. <Reference Include="System.Data.Linq">
  60. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  61. </Reference>
  62. <Reference Include="System.Data.SQLite, Version=1.0.47.2, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=x86">
  63. <SpecificVersion>False</SpecificVersion>
  64. <HintPath>..\..\lib\System.Data.SQLite.DLL</HintPath>
  65. </Reference>
  66. <Reference Include="System.Security" />
  67. <Reference Include="System.Xml" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Compile Include="nwind\DbLinq_EnumTest.cs" />
  71. <Compile Include="nwind\Northwind.cs" />
  72. <Compile Include="ObjectDumper.cs" />
  73. <Compile Include="Program.cs" />
  74. <Compile Include="Properties\AssemblyInfo.cs" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <None Include="sql\create_AllTypes.sql" />
  78. <None Include="sql\create_Northwind.sql" />
  79. <None Include="sql\create_User.sql" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
  83. <Visible>False</Visible>
  84. <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
  85. <Install>false</Install>
  86. </BootstrapperPackage>
  87. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
  88. <Visible>False</Visible>
  89. <ProductName>.NET Framework 3.5</ProductName>
  90. <Install>true</Install>
  91. </BootstrapperPackage>
  92. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  93. <Visible>False</Visible>
  94. <ProductName>Windows Installer 3.1</ProductName>
  95. <Install>true</Install>
  96. </BootstrapperPackage>
  97. </ItemGroup>
  98. <ItemGroup>
  99. <ProjectReference Include="..\..\src\DbLinq.Sqlite\DbLinq.Sqlite.csproj">
  100. <Project>{60B9AFA1-99B4-4DE6-80E1-80BBED1AC755}</Project>
  101. <Name>DbLinq.Sqlite</Name>
  102. </ProjectReference>
  103. <ProjectReference Include="..\..\src\DbLinq\DbLinq.csproj">
  104. <Project>{7950197D-4122-49CB-9FD7-45E666BAFEC2}</Project>
  105. <Name>DbLinq</Name>
  106. </ProjectReference>
  107. </ItemGroup>
  108. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  109. </Project>