Welcome to mirror list, hosted at ThFree Co, Russian Federation.

md.targets « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f3cdf52139c90d153df5b5cbfbe9a2429b08e2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
	<ItemGroup>
		<SearchPathFiles Include="$(SolutionDir)\build\AddIns\**\*.dll"/>
	</ItemGroup>

	<Target Name="BeforeResolveReferences">
		<RemoveDuplicates Inputs="@(SearchPathFiles->'%(RootDir)%(Directory)')">
			<Output TaskParameter="Filtered" ItemName="SearchPath" />
		</RemoveDuplicates>

		<CreateProperty Value="@(SearchPath);$(SolutionDir)\build\bin;$(AssemblySearchPaths)">
			<Output TaskParameter="Value" PropertyName="AssemblySearchPaths" />
		</CreateProperty>
	</Target>
</Project>