No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

110 líneas
6.0KB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Deployment Framework for BizTalk
  4. Copyright (C) 2004-2012 Thomas F. Abraham and Scott Colestock
  5. -->
  6. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Installer" ToolsVersion="4.0">
  7. <PropertyGroup>
  8. <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
  9. <Platform Condition="'$(Platform)' == ''">x86</Platform>
  10. <!--Customization Generic Apps-->
  11. <IsGenericComponent>False</IsGenericComponent>
  12. <IntegrationCode>F017</IntegrationCode>
  13. <UseEnvSettingsDB>True</UseEnvSettingsDB>
  14. <!-- Customization SSO Data Store Credentials -->
  15. <SsoAppAdminGroup>KLG\BizTalk SSO Administrators_$(BTDFENV)</SsoAppAdminGroup>
  16. <SsoAppUserGroup>KLG\BizTalk SSO Administrators_$(BTDFENV)</SsoAppUserGroup>
  17. <!-- End Customization -->
  18. <SchemaVersion>1.0</SchemaVersion>
  19. <ProjectName>TM.Bosman</ProjectName>
  20. <ProjectVersion>1.0</ProjectVersion>
  21. <IncludeOrchestrations>True</IncludeOrchestrations>
  22. <IncludeTransforms>True</IncludeTransforms>
  23. <IncludePipelines>False</IncludePipelines>
  24. <IncludeComponents>True</IncludeComponents>
  25. <IncludePipelineComponents>False</IncludePipelineComponents>
  26. <IncludeSSO>True</IncludeSSO>
  27. <UsingMasterBindings>True</UsingMasterBindings>
  28. <RequireXmlPreprocessDirectives>False</RequireXmlPreprocessDirectives>
  29. <ApplyXmlEscape>True</ApplyXmlEscape>
  30. <SkipIISReset>True</SkipIISReset>
  31. <SkipHostInstancesRestart>True</SkipHostInstancesRestart>
  32. </PropertyGroup>
  33. <PropertyGroup>
  34. <!-- Properties related to building an MSI for server deployments -->
  35. <!-- BizTalk App Version Upgrade -->
  36. <!-- For each new product release to be deployed to your BizTalk servers: -->
  37. <!-- 1) Increment ProductVersion -->
  38. <!-- 2) Generate a new GUID and update ProductId with the new GUID -->
  39. <!-- This allows the new MSI to automatically uninstall (not undeploy!) the old MSI and install the new one. -->
  40. <ProductVersion>1.0.43</ProductVersion>
  41. <ProductId>8ff228dd-667e-4189-a9bf-f5ec4426258c</ProductId>
  42. <!-- BizTalk App Version Upgrade -->
  43. <ProductName>TM.Bosman</ProductName>
  44. <Manufacturer>$(BTDFCOMPANYNAME) Deployment Framework User</Manufacturer>
  45. <PackageDescription>Bosman</PackageDescription>
  46. <PackageComments>Bosman</PackageComments>
  47. <BizTalkAppDescription>$(ProjectName)-$(ProductVersion) Deployed on: $([System.DateTime]::Now) By: $(USERNAME) </BizTalkAppDescription>
  48. <!-- NEVER change the ProductUpgradeCode. -->
  49. <ProductUpgradeCode>8180e568-5f30-455f-a294-23f08f315d61</ProductUpgradeCode>
  50. </PropertyGroup>
  51. <!-- Under TFS Team Build, set CustomizableOutDir property to true in TFS 2005/2008/2010 UpgradeTemplate. -->
  52. <!-- With a workflow build, copy the default template then modify the MSBuild task for the solution build. Set OutDir to blank and -->
  53. <!-- CommandLineArguments to String.Format("/p:SkipInvalidConfigurations=true;TeamBuildOutDir=""{0}"" {1}", BinariesDirectory, MSBuildArguments). -->
  54. <PropertyGroup Condition="'$(Configuration)' == 'Debug'">
  55. <DeploymentFrameworkTargetsPath>$(MSBuildExtensionsPath)\DeploymentFrameworkForBizTalk\5.0\</DeploymentFrameworkTargetsPath>
  56. <OutputPath Condition="'$(TeamBuildOutDir)' == ''">bin\Debug\</OutputPath>
  57. <OutputPath Condition="'$(TeamBuildOutDir)' != ''">$(TeamBuildOutDir)</OutputPath>
  58. <DeployPDBsToGac>false</DeployPDBsToGac>
  59. </PropertyGroup>
  60. <PropertyGroup Condition="'$(Configuration)' == 'Release'">
  61. <DeploymentFrameworkTargetsPath>$(MSBuildExtensionsPath)\DeploymentFrameworkForBizTalk\5.0\</DeploymentFrameworkTargetsPath>
  62. <OutputPath Condition="'$(TeamBuildOutDir)' == ''">bin\Release\</OutputPath>
  63. <OutputPath Condition="'$(TeamBuildOutDir)' != ''">$(TeamBuildOutDir)</OutputPath>
  64. <DeployPDBsToGac>false</DeployPDBsToGac>
  65. </PropertyGroup>
  66. <PropertyGroup Condition="'$(Configuration)' == 'Server'">
  67. <DeploymentFrameworkTargetsPath>Framework\</DeploymentFrameworkTargetsPath>
  68. <!-- Get our PDBs into the GAC so we get file/line number information in stack traces. -->
  69. <DeployPDBsToGac>true</DeployPDBsToGac>
  70. </PropertyGroup>
  71. <ItemGroup>
  72. <PropsFromEnvSettings Include="SsoAppUserGroup;SsoAppAdminGroup;ESBLookupConnectionString;ESBTrackingConnectionString;B2BUsername;B2BPassword" />
  73. <AppsToReference Include="TM.Shared.Pipelines" />
  74. <AppsToReference Include="TM.Shared.Schemas"/>
  75. </ItemGroup>
  76. <!-- !!! TODO !!! -->
  77. <!-- Add ItemGroup elements that contain one or more Schemas, Orchestrations, Transforms, etc. elements that describe -->
  78. <!-- the specific artifacts in your solution that need to be deployed. Use IntelliSense as a guide. -->
  79. <ItemGroup>
  80. <Components Include="TM.Bosman.Components.dll">
  81. <LocationPath>..\Components\bin\$(Configuration)</LocationPath>
  82. </Components>
  83. <Schemas Include="TM.Bosman.Schemas.dll">
  84. <LocationPath>..\Schemas\bin\$(Configuration)</LocationPath>
  85. </Schemas>
  86. <Transforms Include="TM.Bosman.Transforms.dll">
  87. <LocationPath>..\Transforms\bin\$(Configuration)</LocationPath>
  88. </Transforms>
  89. <!--<Pipelines Include="TM.Bosman.Pipelines.dll">
  90. <LocationPath>..\Pipelines\bin\$(Configuration)</LocationPath>
  91. </Pipelines>-->
  92. <Orchestrations Include="TM.Bosman.Orchestrations.dll">
  93. <LocationPath>..\Orchestrations\bin\$(Configuration)</LocationPath>
  94. </Orchestrations>
  95. </ItemGroup>
  96. <!--<ItemGroup>
  97. <AppsToReference Include="Generic" />
  98. </ItemGroup>-->
  99. <!-- !!! TODO !!! -->
  100. <Import Project="$(DeploymentFrameworkTargetsPath)BizTalkDeploymentFramework.targets" />
  101. <Import Project="$(BTDFEXTENSIONPATH)\Targets\1.0.0.\Custom.BizTalkDeploymentFramework.targets" />
  102. <!--
  103. The Deployment Framework automatically packages most files into the server install MSI.
  104. However, if there are special folders that you need to include in the MSI, you can
  105. copy them to the folder $(RedistDir) in the CustomRedist target.
  106. To include individual files, add an ItemGroup with AdditionalFiles elements.
  107. -->
  108. <Target Name="CustomRedist">
  109. </Target>
  110. </Project>