26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<Project Sdk="Internal.AspNetCore.Sdk">
|
|
<PropertyGroup>
|
|
<AssemblyName>GetDocument.Insider</AssemblyName>
|
|
<Description>GetDocument Command-line Tool inside man</Description>
|
|
<IsPackable>false</IsPackable>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>Microsoft.Extensions.ApiDescription.Tool</RootNamespace>
|
|
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
|
|
<VerifyVersion>false</VerifyVersion>
|
|
<VersionPrefix>$(ExperimentalVersionPrefix)</VersionPrefix>
|
|
<VersionSuffix>$(ExperimentalVersionSuffix)</VersionSuffix>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="$(MicrosoftAspNetCoreHostingAbstractions20PackageVersion)" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="BuildX86" AfterTargets="Build" Condition=" '$(TargetFramework)' == 'net461' And '$(Platform)' != 'x86' ">
|
|
<MSBuild Projects="$(MSBuildProjectFullPath)" Properties="TargetFramework=$(TargetFramework);Platform=x86" Targets="Build" />
|
|
</Target>
|
|
</Project>
|