| 123456789101112131415161718192021222324252627282930 |
- <Project>
- <PropertyGroup>
- <AzureIntegrationProjectRoot>$(MSBuildThisFileDirectory)..\modules\AzureIntegration\</AzureIntegrationProjectRoot>
- </PropertyGroup>
- <Target Name="BuildAzureIntegration" DependsOnTargets="PrepareOutputPaths;GeneratePropsFiles">
- <PropertyGroup>
- <AzureIntegrationProjProperties>
- AspNetUniverseBuildOffline=true;
- RepositoryRoot=$(AzureIntegrationProjectRoot);
- DotNetRestoreSourcePropsPath=$(GeneratedRestoreSourcesPropsPath);
- DotNetPackageVersionPropsPath=$(GeneratedPackageVersionPropsPath);
- BuildNumber=$(BuildNumber);
- Configuration=$(Configuration);
- IsFinalBuild=$(IsFinalBuild);
- </AzureIntegrationProjProperties>
- </PropertyGroup>
- <MSBuild Projects="$(MSBuildProjectFullPath)"
- Targets="$(AzureIntegrationProjectTargets)"
- Properties="$(AzureIntegrationProjProperties)" />
- <ItemGroup>
- <AzureIntegrationArtifacts Include="$(AzureIntegrationProjectRoot)artifacts\build\*" />
- </ItemGroup>
- <Copy SourceFiles="@(AzureIntegrationArtifacts)" DestinationFolder="$(BuildDir)" />
- </Target>
- </Project>
|