2018-10-23 03:04:13 +00:00
|
|
|
<Project>
|
|
|
|
<PropertyGroup>
|
2018-10-29 18:37:13 +00:00
|
|
|
<!-- Tasks are multitargeted to support building in VS and with desktop MSBuild -->
|
|
|
|
<TaskTargetFramework>$(CoreSdkTargetFramework)</TaskTargetFramework>
|
|
|
|
<TaskTargetFramework Condition="'$(MSBuildRuntimeType)' != 'Core'">net472</TaskTargetFramework>
|
|
|
|
|
|
|
|
<CoreSdkTaskDll>$(ArtifactsDir)tasks\bin\core-sdk-tasks\$(Configuration)\$(TaskTargetFramework)\core-sdk-tasks.dll</CoreSdkTaskDll>
|
2018-10-23 03:04:13 +00:00
|
|
|
<CoreSdkTaskProject>$(RepoRoot)src\core-sdk-tasks\core-sdk-tasks.csproj</CoreSdkTaskProject>
|
|
|
|
</PropertyGroup>
|
|
|
|
<Target Name="BuildCoreSdkTasks" BeforeTargets="_CheckForInvalidConfigurationAndPlatform">
|
|
|
|
<!-- Use a different ArtifactsDir for this invocation so that the tasks project can be part of the solution
|
|
|
|
(for easy editing), but we don't hit problems with the tasks DLL being locked when we try to build the solution. -->
|
|
|
|
|
|
|
|
<MSBuild Projects="$(CoreSdkTaskProject)"
|
|
|
|
Properties="ArtifactsDir=$(ArtifactsDir)tasks\;Phase=Restore"
|
|
|
|
Targets="Restore"/>
|
|
|
|
|
|
|
|
<MSBuild Projects="$(CoreSdkTaskProject)"
|
|
|
|
Properties="ArtifactsDir=$(ArtifactsDir)tasks\"/>
|
|
|
|
</Target>
|
2018-10-24 01:16:45 +00:00
|
|
|
|
|
|
|
<UsingTask TaskName="GetCurrentRuntimeInformation" AssemblyFile="$(CoreSdkTaskDll)" />
|
|
|
|
<UsingTask TaskName="DownloadFile" AssemblyFile="$(CoreSdkTaskDll)" />
|
2018-10-24 06:15:58 +00:00
|
|
|
<UsingTask TaskName="ExtractArchiveToDirectory" AssemblyFile="$(CoreSdkTaskDll)" />
|
2018-10-29 20:31:03 +00:00
|
|
|
<UsingTask TaskName="ZipFileCreateFromDirectory" AssemblyFile="$(CoreSdkTaskDll)" />
|
2018-10-31 20:56:32 +00:00
|
|
|
<UsingTask TaskName="ZipFileExtractToDirectory" AssemblyFile="$(CoreSdkTaskDll)" />
|
2018-10-29 20:31:03 +00:00
|
|
|
<UsingTask TaskName="TarGzFileCreateFromDirectory" AssemblyFile="$(CoreSdkTaskDll)" />
|
2018-10-31 20:56:32 +00:00
|
|
|
<UsingTask TaskName="GenerateMsiVersion" AssemblyFile="$(CoreSdkTaskDll)" />
|
|
|
|
<UsingTask TaskName="GenerateGuidFromName" AssemblyFile="$(CoreSdkTaskDll)" />
|
2018-11-02 06:15:59 +00:00
|
|
|
<UsingTask TaskName="ReplaceFileContents" AssemblyFile="$(CoreSdkTaskDll)" />
|
|
|
|
<UsingTask TaskName="Chmod" AssemblyFile="$(CoreSdkTaskDll)" />
|
|
|
|
<UsingTask TaskName="DotNetDebTool" AssemblyFile="$(CoreSdkTaskDll)" />
|
2018-11-05 21:38:10 +00:00
|
|
|
<UsingTask TaskName="BuildFPMToolPreReqs" AssemblyFile="$(CoreSdkTaskDll)"/>
|
2018-11-12 19:52:19 +00:00
|
|
|
<UsingTask TaskName="GetUseBundledNETCoreAppPackageVersionAsDefaultNetCorePatchVersion" AssemblyFile="$(CoreSdkTaskDll)"/>
|
2018-12-04 02:15:31 +00:00
|
|
|
<UsingTask TaskName="AddMetadataIsPE" AssemblyFile="$(CoreSdkTaskDll)"/>
|
|
|
|
<UsingTask TaskName="Crossgen" AssemblyFile="$(CoreSdkTaskDll)"/>
|
2018-12-20 18:03:12 +00:00
|
|
|
<UsingTask TaskName="CopyBlobsToLatest" AssemblyFile="$(CoreSdkTaskDll)"/>
|
2018-12-21 22:58:11 +00:00
|
|
|
<UsingTask TaskName="GenerateChecksums" AssemblyFile="$(CoreSdkTaskDll)"/>
|
2018-12-30 08:14:44 +00:00
|
|
|
<UsingTask TaskName="GetRuntimePackRids" AssemblyFile="$(CoreSdkTaskDll)"/>
|
2018-11-05 21:38:10 +00:00
|
|
|
|
2018-10-23 03:04:13 +00:00
|
|
|
</Project>
|