dotnet-installer/src/redist/targets/DownloadPackage.csproj

21 lines
688 B
XML
Raw Normal View History

<Project DefaultTargets="Restore">
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" />
2018-12-04 02:15:31 +00:00
<PropertyGroup>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
2018-12-04 02:15:31 +00:00
</PropertyGroup>
<ItemGroup>
<PackageDownload Include="$(PackageToRestore)" Version="[$(PackageVersionToRestore)]" />
2018-12-04 02:15:31 +00:00
</ItemGroup>
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" />
<!-- Eliminate any package references injected by arcade, we only want to download a single package -->
<ItemGroup>
<PackageReference Remove="@(PackageReference)" />
</ItemGroup>
2018-12-04 02:15:31 +00:00
</Project>