24 lines
1.3 KiB
XML
24 lines
1.3 KiB
XML
<Project>
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" />
|
|
|
|
<PropertyGroup>
|
|
<ManifestsPackagePath>data/</ManifestsPackagePath>
|
|
<!-- Shared between targeting pack and runtime build. -->
|
|
<PlatformManifestFileName>PlatformManifest.txt</PlatformManifestFileName>
|
|
<PlatformManifestOutputPath>$(ArtifactsObjDir)$(PlatformManifestFileName)</PlatformManifestOutputPath>
|
|
<DisablePubternalApiCheck>true</DisablePubternalApiCheck>
|
|
|
|
<!-- Platform manifest and package override metatdata -->
|
|
<ReferencePackSharedFxVersion>$(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).0</ReferencePackSharedFxVersion>
|
|
<ReferencePackSharedFxVersion Condition="'$(VersionSuffix)' != ''">$(ReferencePackSharedFxVersion)-$(VersionSuffix)</ReferencePackSharedFxVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkListRootAttributes Include="Name" Value="$(AspNetCoreAppFrameworkBrandName)" />
|
|
<FrameworkListRootAttributes Include="TargetFrameworkIdentifier" Value="$(NETCoreAppFrameworkIdentifier)" />
|
|
<FrameworkListRootAttributes Include="TargetFrameworkVersion" Value="$(AspNetCoreMajorMinorVersion)" />
|
|
<FrameworkListRootAttributes Include="FrameworkName" Value="$(SharedFxName)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|