forked from stride3d/stride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stride.Core.Build.props
14 lines (12 loc) · 1018 Bytes
/
Stride.Core.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!-- Build file pre-included by all Stride projects -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<StridePackageStride Condition="'$(StridePackageStride)' == ''">$(MSBuildThisFileDirectory)..</StridePackageStride>
<StridePlatformFullName>$(StridePlatform)</StridePlatformFullName>
<StridePlatformFullName Condition="'$(StrideBuildDirExtension)' != ''">$(StridePlatformFullName)-$(StrideBuildDirExtension)</StridePlatformFullName>
<!-- Resolve path (remove ".." elements), for better support on Xamarin iOS -->
<StridePackageStride>$([System.IO.Path]::GetFullPath('$(StridePackageStride)'))</StridePackageStride>
<StridePackageStrideBin Condition="'$(StridePackageStrideBin)' == ''">$(StridePackageStride)\Bin</StridePackageStrideBin>
<StridePackageStridePlatformBin Condition="'$(StridePackageStridePlatformBin)' == ''">$(StridePackageStrideBin)\$(StridePlatformFullName)</StridePackageStridePlatformBin>
</PropertyGroup>
</Project>