2019-06-28 13:15:43 +00:00
|
|
|
<Project DefaultTargets="Restore">
|
2019-02-15 02:21:23 +00:00
|
|
|
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" />
|
2019-06-28 13:15:43 +00:00
|
|
|
|
2018-12-04 02:15:31 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2018-12-30 08:14:44 +00:00
|
|
|
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
|
2018-12-04 02:15:31 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-06-28 13:15:43 +00:00
|
|
|
<PackageDownload Include="$(PackageToRestore)" Version="[$(PackageVersionToRestore)]" />
|
2018-12-04 02:15:31 +00:00
|
|
|
</ItemGroup>
|
2019-06-28 13:15:43 +00:00
|
|
|
|
2019-02-15 02:21:23 +00:00
|
|
|
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" />
|
|
|
|
|
2019-06-28 13:15:43 +00:00
|
|
|
<!-- 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>
|