-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.targets
More file actions
27 lines (24 loc) · 1.32 KB
/
Copy pathDirectory.Build.targets
File metadata and controls
27 lines (24 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project>
<ItemGroup Condition="$(UseNugetDLLs)">
<PackageReference
Include="Microsoft.Dynamics.BusinessCentral.Development.Tools.Osx"
ExcludeAssets="all"
GeneratePathProperty="true"
Condition="$([MSBuild]::IsOsPlatform('OSX'))" />
<PackageReference
Include="Microsoft.Dynamics.BusinessCentral.Development.Tools.Linux"
ExcludeAssets="all"
GeneratePathProperty="true"
Condition="$([MSBuild]::IsOsPlatform('Linux'))" />
<PackageReference
Include="Microsoft.Dynamics.BusinessCentral.Development.Tools.Win"
ExcludeAssets="all"
GeneratePathProperty="true"
Condition="$([MSBuild]::IsOsPlatform('Windows'))" />
</ItemGroup>
<PropertyGroup Condition="$(UseNugetDLLs)">
<NavDLLsDir Condition="$([MSBuild]::IsOsPlatform('OSX'))">$(PkgMicrosoft_Dynamics_BusinessCentral_Development_Tools_Osx)/lib/net10.0/</NavDLLsDir>
<NavDLLsDir Condition="$([MSBuild]::IsOsPlatform('Linux'))">$(PkgMicrosoft_Dynamics_BusinessCentral_Development_Tools_Linux)/lib/net10.0/</NavDLLsDir>
<NavDLLsDir Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(PkgMicrosoft_Dynamics_BusinessCentral_Development_Tools_Win)/lib/net10.0/</NavDLLsDir>
</PropertyGroup>
</Project>