-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGo.OutDir.props
27 lines (22 loc) · 1.76 KB
/
Go.OutDir.props
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
<!-- This property sheet resolves the 'OutDir'property (supports override in zou.cfg folder). -->
<Project TreatAsLocalProperty="OutDir">
<PropertyGroup>
<_PropertySheetDisplayName>Go Output Directory</_PropertySheetDisplayName>
<!-- Initialise fallback -->
<!-- Reset default OutDir property (defined in Microsoft.Cpp.props) if not specified on the command line -->
<!-- WARNING: do not use Microsoft's OutDirWasSpecified property because it is resetted in Microsoft.Cpp.targets! -->
<!--<OutDir Condition="'$(OutDirSpecified)' != 'true'" />-->
</PropertyGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(MSBuildProjectDirectory)\..\..\..\..\..\..\..\$(ZouCfg)**\$(MSBuildThisFileName)*$(MSBuildThisFileExtension)" />
<Import Project="$(MSBuildProjectDirectory)\..\..\..\..\..\..\$(ZouCfg)**\$(MSBuildThisFileName)*$(MSBuildThisFileExtension)" />
<Import Project="$(MSBuildProjectDirectory)\..\..\..\..\..\$(ZouCfg)**\$(MSBuildThisFileName)*$(MSBuildThisFileExtension)" />
<Import Project="$(MSBuildProjectDirectory)\..\..\..\..\$(ZouCfg)**\$(MSBuildThisFileName)*$(MSBuildThisFileExtension)" />
<Import Project="$(MSBuildProjectDirectory)\..\..\..\$(ZouCfg)**\$(MSBuildThisFileName)*$(MSBuildThisFileExtension)" />
<Import Project="$(MSBuildProjectDirectory)\..\..\$(ZouCfg)**\$(MSBuildThisFileName)*$(MSBuildThisFileExtension)" />
<Import Project="$(MSBuildProjectDirectory)\..\$(ZouCfg)**\$(MSBuildThisFileName)*$(MSBuildThisFileExtension)" />
<Import Project="$(MSBuildProjectDirectory)\$(ZouCfg)**\$(MSBuildThisFileName)*$(MSBuildThisFileExtension)" />
<Import Project="$(ZouPrivateDir)$(MSBuildThisFileName).Default$(MSBuildThisFileExtension)" />
</ImportGroup>
<Import Project="OutDir.props" />
</Project>