summaryrefslogtreecommitdiff
path: root/packages/microsoft.portable.targets/0.1.1-dev/contentFiles/any/any/Extensions/Microsoft/Portable/Microsoft.Portable.Core.props
diff options
context:
space:
mode:
Diffstat (limited to 'packages/microsoft.portable.targets/0.1.1-dev/contentFiles/any/any/Extensions/Microsoft/Portable/Microsoft.Portable.Core.props')
-rwxr-xr-xpackages/microsoft.portable.targets/0.1.1-dev/contentFiles/any/any/Extensions/Microsoft/Portable/Microsoft.Portable.Core.props41
1 files changed, 41 insertions, 0 deletions
diff --git a/packages/microsoft.portable.targets/0.1.1-dev/contentFiles/any/any/Extensions/Microsoft/Portable/Microsoft.Portable.Core.props b/packages/microsoft.portable.targets/0.1.1-dev/contentFiles/any/any/Extensions/Microsoft/Portable/Microsoft.Portable.Core.props
new file mode 100755
index 0000000000..02fba2a767
--- /dev/null
+++ b/packages/microsoft.portable.targets/0.1.1-dev/contentFiles/any/any/Extensions/Microsoft/Portable/Microsoft.Portable.Core.props
@@ -0,0 +1,41 @@
+<!--
+***********************************************************************************************
+Microsoft.Portable.Core.props
+
+Contains common properties that are shared by all portable library projects regardless of version.
+
+WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
+ created a backup copy. Incorrect changes to this file will make it
+ impossible to load or build your projects from the command-line or the IDE.
+
+Copyright (C) Microsoft Corporation. All rights reserved.
+***********************************************************************************************
+-->
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+
+ <Import Project="VisualStudio\v$(VisualStudioVersion)\Microsoft.Portable.CurrentVersion.props" Condition="Exists('VisualStudio\v$(VisualStudioVersion)\Microsoft.Portable.CurrentVersion.props')"/>
+
+ <PropertyGroup>
+ <TargetPlatformIdentifier>Portable</TargetPlatformIdentifier>
+ <TargetFrameworkIdentifier>.NETPortable</TargetFrameworkIdentifier>
+ <TargetFrameworkMonikerDisplayName>.NET Portable Subset</TargetFrameworkMonikerDisplayName>
+
+ <!-- Automatically reference all assemblies in the target framework -->
+ <ImplicitlyExpandTargetFramework Condition="'$(ImplicitlyExpandTargetFramework)' == '' AND '$(PortableNuGetMode)' != 'true'">true</ImplicitlyExpandTargetFramework>
+
+ </PropertyGroup>
+
+ <!-- Redefine AssemblySearchPaths to exclude {AssemblyFolders} and {GAC}, these represent .NET-specific locations -->
+ <PropertyGroup>
+ <AssemblySearchPaths Condition="'$(AssemblySearchPaths)' == ''">
+ {CandidateAssemblyFiles};
+ $(ReferencePath);
+ {HintPathFromItem};
+ {TargetFrameworkDirectory};
+ {Registry:$(FrameworkRegistryBase),$(TargetFrameworkVersion),$(AssemblyFoldersSuffix)$(AssemblyFoldersExConditions)};
+ {RawFileName};
+ $(OutDir)
+ </AssemblySearchPaths>
+ </PropertyGroup>
+
+</Project>