Hi,
I am new to BTDF, I have a solution which is having three projects
<!-- Deployment Framework for BizTalk Copyright (C) 2008-14 Thomas F. Abraham, 2004-08 Scott Colestock --><Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Installer" ToolsVersion="4.0">
<PropertyGroup>
<PropertyGroup>
<!-- Under TFS Team Build, set CustomizableOutDir property to true in TFS 2005/2008/2010 UpgradeTemplate. --><!-- With a workflow build, copy the default template then modify the MSBuild task for the solution build. Set OutDir to blank and --><!-- CommandLineArguments to String.Format("/p:SkipInvalidConfigurations=true;TeamBuildOutDir=""{0}"" {1}", BinariesDirectory, MSBuildArguments). --><PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<PropertyGroup Condition="'$(Configuration)' == 'Server'">
<ItemGroup>
<!-- !!! TODO !!! --><!-- Add ItemGroup elements that contain one or more Schemas, Orchestrations, Transforms, etc. elements that describe --><!-- the specific artifacts in your solution that need to be deployed. Use IntelliSense as a guide. --><ItemGroup>
<ItemGroup>
<ItemGroup>
<!-- !!! TODO !!! --><Import Project="$(DeploymentFrameworkTargetsPath)BizTalkDeploymentFramework.targets" />
<!-- The Deployment Framework automatically packages most files into the server install MSI. However, if there are special folders that you need to include in the MSI, you can copy them to the folder $(RedistDir) in the CustomRedist target. To include individual files, add an ItemGroup with AdditionalFiles elements. --><Target Name="CustomRedist">
</Target>
</Project>
I am new to BTDF, I have a solution which is having three projects
- CommonOrchestrations (having one orch file)
-
CommonServices
3.CustomFunctoids
Functiods is going to proper place, dll is getting GACed but the i can not see orchestration in biztalk admin console can some one please help me on this
<?xml version="1.0" encoding="utf-8"?><!-- Deployment Framework for BizTalk Copyright (C) 2008-14 Thomas F. Abraham, 2004-08 Scott Colestock --><Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Installer" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform Condition="'$(Platform)' == ''">x86</Platform>
<SchemaVersion>1.0</SchemaVersion>
<ProjectName>CommonServices</ProjectName>
<ProjectVersion>1.0</ProjectVersion>
<IncludeSchemas>False</IncludeSchemas>
<IncludeTransforms>False</IncludeTransforms>
<IncludeOrchestrations>true</IncludeOrchestrations>
<IncludeComponents>true</IncludeComponents>
<IncludeCustomFunctoids>true</IncludeCustomFunctoids>
<IncludeMessagingBindings>False</IncludeMessagingBindings>
<UsingMasterBindings>True</UsingMasterBindings>
<RequireXmlPreprocessDirectives>False</RequireXmlPreprocessDirectives>
<ApplyXmlEscape>True</ApplyXmlEscape>
<IncludeSettingsSpreadsheetInMsi>False</IncludeSettingsSpreadsheetInMsi>
<StartApplicationOnDeploy>False</StartApplicationOnDeploy>
<EnableAllReceiveLocationsOnDeploy>False</EnableAllReceiveLocationsOnDeploy>
<StartReferencedApplicationsOnDeploy>False</StartReferencedApplicationsOnDeploy>
<SkipIISReset>true</SkipIISReset>
</PropertyGroup><PropertyGroup>
<!-- Properties related to building an MSI for server deployments -->
<!-- BizTalk App Version Upgrade -->
<!-- For each new product release to be deployed to your BizTalk servers: -->
<!-- 1) Increment ProductVersion -->
<!-- 2) Generate a new GUID and update ProductId with the new GUID -->
<!-- This allows the new MSI to automatically uninstall (not undeploy!) the old MSI and install the new one. -->
<ProductVersion>1.0.0</ProductVersion>
<ProductId>d872bfc7-757c-413b-8bd6-6db9ec11a97e</ProductId>
<!-- BizTalk App Version Upgrade -->
<ProductName>CommonServices for BizTalk</ProductName>
<Manufacturer>Deployment Framework User</Manufacturer>
<PackageDescription>CommonServices</PackageDescription>
<!-- NEVER change the ProductUpgradeCode. -->
<ProductUpgradeCode>28add145-3e2d-4560-9676-44f1b5eb7a9d</ProductUpgradeCode>
</PropertyGroup><!-- Under TFS Team Build, set CustomizableOutDir property to true in TFS 2005/2008/2010 UpgradeTemplate. --><!-- With a workflow build, copy the default template then modify the MSBuild task for the solution build. Set OutDir to blank and --><!-- CommandLineArguments to String.Format("/p:SkipInvalidConfigurations=true;TeamBuildOutDir=""{0}"" {1}", BinariesDirectory, MSBuildArguments). --><PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DeploymentFrameworkTargetsPath>$(MSBuildExtensionsPath)\DeploymentFrameworkForBizTalk\5.0\</DeploymentFrameworkTargetsPath>
<OutputPath Condition="'$(TeamBuildOutDir)' == ''">bin\Debug\</OutputPath>
<OutputPath Condition="'$(TeamBuildOutDir)' != ''">$(TeamBuildOutDir)</OutputPath>
</PropertyGroup><PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DeploymentFrameworkTargetsPath>$(MSBuildExtensionsPath)\DeploymentFrameworkForBizTalk\5.0\</DeploymentFrameworkTargetsPath>
<OutputPath Condition="'$(TeamBuildOutDir)' == ''">bin\Release\</OutputPath>
<OutputPath Condition="'$(TeamBuildOutDir)' != ''">$(TeamBuildOutDir)</OutputPath>
</PropertyGroup><PropertyGroup Condition="'$(Configuration)' == 'Server'">
<DeploymentFrameworkTargetsPath>Framework\</DeploymentFrameworkTargetsPath>
<!-- Get our PDBs into the GAC so we get file/line number information in stack traces. -->
<DeployPDBsToGac>false</DeployPDBsToGac>
</PropertyGroup><ItemGroup>
<PropsFromEnvSettings Include="SsoAppUserGroup;SsoAppAdminGroup" />
</ItemGroup><!-- !!! TODO !!! --><!-- Add ItemGroup elements that contain one or more Schemas, Orchestrations, Transforms, etc. elements that describe --><!-- the specific artifacts in your solution that need to be deployed. Use IntelliSense as a guide. --><ItemGroup>
<Components Include="CommonServices.dll">
<LocationPath>..\CommonServices\bin\$(Configuration)</LocationPath>
</Components>
</ItemGroup><ItemGroup>
<CustomFunctoids Include="CustomFunctoids.dll">
<LocationPath>..\CustomFunctoids\bin\$(Configuration)</LocationPath>
</CustomFunctoids>
</ItemGroup><ItemGroup>
<Orchestrations Include="CommonOrchestrations.dll">
<LocationPath>..\CommonOrchestrations\bin\$(Configuration)</LocationPath>
</Orchestrations>
</ItemGroup><!-- !!! TODO !!! --><Import Project="$(DeploymentFrameworkTargetsPath)BizTalkDeploymentFramework.targets" />
<!-- The Deployment Framework automatically packages most files into the server install MSI. However, if there are special folders that you need to include in the MSI, you can copy them to the folder $(RedistDir) in the CustomRedist target. To include individual files, add an ItemGroup with AdditionalFiles elements. --><Target Name="CustomRedist">
</Target>
</Project>