forked from microsoft/fsi-experiences
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
17 lines (14 loc) · 946 Bytes
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Project>
<Import Project="RepoLayout.props" />
<PropertyGroup>
<OutDirName Condition="'$(OutDirName)' == ''">$(MSBuildProjectName)</OutDirName>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<ModulePath>$([System.IO.Directory]::GetParent('$(MSBuildProjectDirectory)'))</ModulePath>
<ModuleName Condition="'$(ModuleName)' == ''">$([System.IO.Path]::GetFileName('$(ModulePath)'))</ModuleName>
<BaseOutputPath>$(WSRoot)\target\$(Configuration)\$(Platform)\$(ModuleName)\$(MSBuildProjectName)</BaseOutputPath>
<PDPackagesDropPath>$(WSRoot)\drop\$(Configuration)\$(Platform)\PDPackages</PDPackagesDropPath>
<EnableExportMerge Condition="'$(EnableExportMerge)' == ''">false</EnableExportMerge>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)\PackageVersions.props" />
</Project>