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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortherzok <marius.ungureanu@xamarin.com>2018-04-02 17:21:05 +0300
committerMarius Ungureanu <teromario@yahoo.com>2018-04-03 20:54:21 +0300
commit5f9242cfbec71ecccb40068814a6d933e45d218c (patch)
tree4835959554847d7bfdd63757f248ab1d65947636 /main/Directory.Build.targets
parent696cd8e7f960177dd18bacbc854f00a5274da245 (diff)
[VSTS] Bring in support for a local resolve directory for gtk
Instead of installing support libraries, we just download a zip with the files and unpack it in the repo. This way we can resolve assemblies from a local directory
Diffstat (limited to 'main/Directory.Build.targets')
-rw-r--r--main/Directory.Build.targets8
1 files changed, 8 insertions, 0 deletions
diff --git a/main/Directory.Build.targets b/main/Directory.Build.targets
new file mode 100644
index 0000000000..49f79e2d29
--- /dev/null
+++ b/main/Directory.Build.targets
@@ -0,0 +1,8 @@
+<Project>
+ <!-- Coverity runs on VSTS resolves gtk# from a local directory -->
+ <Target Name="BeforeResolveReferences" Condition=" '$(COVERITY_GTK)' != '' ">
+ <CreateProperty Value="$(MSBuildThisFileDirectory)\$(COVERITY_GTK);$(AssemblySearchPaths)">
+ <Output TaskParameter="Value" PropertyName="AssemblySearchPaths" />
+ </CreateProperty>
+ </Target>
+</Project>