33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="$(DotNetRestoreSourcePropsPath)" Condition="'$(DotNetRestoreSourcePropsPath)' != ''"/>
|
|
|
|
<PropertyGroup>
|
|
<RestoreSources>$(DotNetRestoreSources)</RestoreSources>
|
|
<RestoreSources Condition="'$(DotNetBuildOffline)' != 'true' AND '$(AspNetUniverseBuildOffline)' != 'true' ">
|
|
$(RestoreSources);
|
|
https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json;
|
|
https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json;
|
|
</RestoreSources>
|
|
<RestoreSources Condition="'$(DotNetBuildOffline)' != 'true'">
|
|
$(RestoreSources);
|
|
https://api.nuget.org/v3/index.json;
|
|
</RestoreSources>
|
|
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<IncludeSymbols>false</IncludeSymbols>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<PackageTags>aspnetcore</PackageTags>
|
|
<Description>Microsoft.AspNetCore.All</Description>
|
|
<EnableApiCheck>false</EnableApiCheck>
|
|
<RuntimeFrameworkVersion>$(MicrosoftNETCoreApp20PackageVersion)</RuntimeFrameworkVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="build\**\*.xml" PackagePath="%(Identity)" />
|
|
<Content Include="build\**\*.targets" PackagePath="%(Identity)" />
|
|
<Content Include="lib\$(TargetFramework)\_._" PackagePath="%(Identity)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|