Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

LogsDatabase.sqlproj 3.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <Name>LogsDatabase</Name>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <ProjectVersion>4.1</ProjectVersion>
  10. <ProjectGuid>{e5ab297d-13e3-4940-b441-f28290ae755f}</ProjectGuid>
  11. <DSP>Microsoft.Data.Tools.Schema.Sql.Sql110DatabaseSchemaProvider</DSP>
  12. <OutputType>Database</OutputType>
  13. <RootPath>
  14. </RootPath>
  15. <RootNamespace>LogsDatabase</RootNamespace>
  16. <AssemblyName>LogsDatabase</AssemblyName>
  17. <ModelCollation>1033, CI</ModelCollation>
  18. <DefaultFileStructure>BySchemaAndSchemaType</DefaultFileStructure>
  19. <DeployToDatabase>True</DeployToDatabase>
  20. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  21. <TargetLanguage>CS</TargetLanguage>
  22. <AppDesignerFolder>Properties</AppDesignerFolder>
  23. <SqlServerVerification>False</SqlServerVerification>
  24. <IncludeCompositeObjects>True</IncludeCompositeObjects>
  25. <TargetDatabaseSet>True</TargetDatabaseSet>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <OutputPath>bin\Release\</OutputPath>
  29. <BuildScriptName>$(MSBuildProjectName).sql</BuildScriptName>
  30. <TreatWarningsAsErrors>False</TreatWarningsAsErrors>
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <DefineDebug>false</DefineDebug>
  34. <DefineTrace>true</DefineTrace>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  39. <OutputPath>bin\Debug\</OutputPath>
  40. <BuildScriptName>$(MSBuildProjectName).sql</BuildScriptName>
  41. <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
  42. <DebugSymbols>true</DebugSymbols>
  43. <DebugType>full</DebugType>
  44. <Optimize>false</Optimize>
  45. <DefineDebug>true</DefineDebug>
  46. <DefineTrace>true</DefineTrace>
  47. <ErrorReport>prompt</ErrorReport>
  48. <WarningLevel>4</WarningLevel>
  49. </PropertyGroup>
  50. <!-- VS10 without SP1 will not have VisualStudioVersion set, so do that here -->
  51. <PropertyGroup>
  52. <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
  53. <!-- Default to the v10.0 targets path if the targets file for the current VS version is not found -->
  54. <SSDTExists Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\SSDT\Microsoft.Data.Tools.Schema.SqlTasks.targets')">True</SSDTExists>
  55. <VisualStudioVersion Condition="'$(SSDTExists)' == ''">10.0</VisualStudioVersion>
  56. </PropertyGroup>
  57. <Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\SSDT\Microsoft.Data.Tools.Schema.SqlTasks.targets" />
  58. <ItemGroup>
  59. <Folder Include="Properties" />
  60. <Folder Include="dbo\" />
  61. <Folder Include="dbo\Tables\" />
  62. <Folder Include="dbo\Stored Procedures\" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Build Include="dbo\Tables\Log.sql" />
  66. <Build Include="dbo\Tables\CategoryLog.sql" />
  67. <Build Include="dbo\Tables\Category.sql" />
  68. <Build Include="dbo\Stored Procedures\WriteLog.sql" />
  69. <Build Include="dbo\Stored Procedures\InsertCategoryLog.sql" />
  70. <Build Include="dbo\Stored Procedures\ClearLogs.sql" />
  71. <Build Include="dbo\Stored Procedures\AddCategory.sql" />
  72. </ItemGroup>
  73. </Project>