20 lines
898 B
XML
20 lines
898 B
XML
<Project>
|
|
<Import Project="ReferencePath.props.user" Condition="Exists('ReferencePath.props.user')"/>
|
|
<PropertyGroup>
|
|
<AssemblySearchPaths>$(AssemblySearchPaths);$(ReferencePath)</AssemblySearchPaths>
|
|
</PropertyGroup>
|
|
<Target Name="NotifyIncompleteSetup" BeforeTargets="PrepareForBuild" Condition="$(ReferencePath) == ''">
|
|
<PropertyGroup>
|
|
<Template>
|
|
<Project>
|
|
<PropertyGroup>
|
|
<ReferencePath></ReferencePath>
|
|
</PropertyGroup>
|
|
</Project>
|
|
</Template>
|
|
</PropertyGroup>
|
|
<WriteLinesToFile File="../ReferencePath.props.user" Lines="$(Template)" Overwrite="false" Condition="!Exists('../ReferencePath.props.user')"/>
|
|
<Error Text="The ReferencePath property is not specified! Make sure to set the property in the ReferencePath.props.user file."/>
|
|
</Target>
|
|
</Project>
|