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:
authorKirill Osenkov <github@osenkov.com>2018-09-27 02:12:29 +0300
committerMarius Ungureanu <teromario@yahoo.com>2018-09-27 21:51:19 +0300
commit677b7d463068271eb4df0bbb13c7d74301ff6215 (patch)
tree2886e4cd1755c71fe67bbcb0497e6f0443a22a74 /main/Directory.Build.targets
parent1331e934d14cbdf85a7a00e959945dd8c4441171 (diff)
Narrow down assembly file extensions and related file extensions.
Diffstat (limited to 'main/Directory.Build.targets')
-rw-r--r--main/Directory.Build.targets4
1 files changed, 4 insertions, 0 deletions
diff --git a/main/Directory.Build.targets b/main/Directory.Build.targets
index 461dab6aca..34211c42ff 100644
--- a/main/Directory.Build.targets
+++ b/main/Directory.Build.targets
@@ -7,6 +7,10 @@
<RAROutputDirectory Condition="$(RARResolveFromOutputDirectory) == 'true'">$(OutDir)</RAROutputDirectory>
<RARGAC Condition="$(RARResolveFromGAC) == 'true'">{GAC}</RARGAC>
<AssemblySearchPaths>{RawFileName};{HintPathFromItem};{TargetFrameworkDirectory};$(RARGAC);$(RAROutputDirectory);$(RARCandidateAssemblyFiles);$(RARCoverity)</AssemblySearchPaths>
+ <AllowedReferenceAssemblyFileExtensions>.dll</AllowedReferenceAssemblyFileExtensions>
+ <!-- we do have .dll.mdb for Gtk# assemblies, but they're all in the GAC anyway, so effectively we only need .pdb. We don't have .exe.mdb. -->
+ <AllowedReferenceRelatedDebugFileExtensions>.pdb</AllowedReferenceRelatedDebugFileExtensions>
+ <AllowedReferenceRelatedFileExtensions>.pdb;.xml;.dll.config;.exe.config</AllowedReferenceRelatedFileExtensions>
</PropertyGroup>
</Project>