19 lines
933 B
XML
19 lines
933 B
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>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkListRootAttributes Include="Name" Value="$(AspNetCoreAppFrameworkBrandName)" />
|
|
<FrameworkListRootAttributes Include="TargetFrameworkIdentifier" Value="$(NETCoreAppFrameworkIdentifier)" />
|
|
<FrameworkListRootAttributes Include="TargetFrameworkVersion" Value="$(AspNetCoreMajorMinorVersion)" />
|
|
<FrameworkListRootAttributes Include="FrameworkName" Value="$(SharedFxName)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|