26 lines
844 B
XML
26 lines
844 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<AzureIntegrationProjectRoot>$(MSBuildThisFileDirectory)..\src\AzureIntegration\</AzureIntegrationProjectRoot>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="BuildAzureIntegration">
|
|
<PropertyGroup>
|
|
<AzureIntegrationProjProperties>
|
|
RepoRoot=$(AzureIntegrationProjectRoot);
|
|
Configuration=$(Configuration);
|
|
</AzureIntegrationProjProperties>
|
|
</PropertyGroup>
|
|
|
|
<MSBuild Projects="$(MSBuildProjectFullPath)"
|
|
Targets="$(AzureIntegrationProjectTargets)"
|
|
Properties="$(AzureIntegrationProjProperties)" />
|
|
|
|
<ItemGroup>
|
|
<AzureIntegrationArtifacts Include="$(AzureIntegrationProjectRoot)artifacts\build\*" />
|
|
</ItemGroup>
|
|
|
|
<Copy SourceFiles="@(AzureIntegrationArtifacts)" DestinationFolder="$(ArtifactsShippingPackagesDir)" />
|
|
</Target>
|
|
|
|
</Project>
|