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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Mellino <erme@microsoft.com>2016-02-25 06:03:21 +0300
committerEric Mellino <erme@microsoft.com>2016-02-25 06:03:21 +0300
commit41433cafa28dd0759c7b42cf41c9c6f019b5fe4e (patch)
treebdcfb8f33187fdf729984034ab200a62f2fd238d /dir.targets
parentb9dcea3300a58b236c83e44c0b8f25aa2150cd9c (diff)
Simply MSBuild overrides and add comments
Diffstat (limited to 'dir.targets')
-rw-r--r--dir.targets5
1 files changed, 4 insertions, 1 deletions
diff --git a/dir.targets b/dir.targets
index ec7e5dc43c..ea56ee9506 100644
--- a/dir.targets
+++ b/dir.targets
@@ -20,8 +20,11 @@
the GenerateReferenceAssemblyPaths task (not target) and to prevent it from outputting a warning (MSB3644). -->
<_TargetFrameworkDirectories>$(MSBuildThisFileDirectory)/Documentation</_TargetFrameworkDirectories>
<_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory)/Documentation</_FullFrameworkReferenceAssemblyPaths>
+ <!-- We do not want to target a portable profile.
+ TODO: Make this the default in buildtools so this is not necessary. -->
<TargetFrameworkProfile></TargetFrameworkProfile>
- <IgnoreDefaultInstalledAssemblyTables>true</IgnoreDefaultInstalledAssemblyTables>
+ <!-- We set this property to avoid MSBuild errors regarding not setting TargetFrameworkProfile (see above line) -->
+ <PortableNuGetMode>true</PortableNuGetMode>
</PropertyGroup>
</Project>