51 lines
2.3 KiB
XML
51 lines
2.3 KiB
XML
<!--
|
|
***********************************************************************************************
|
|
ProjectK.Common.props
|
|
|
|
Contains common properties and targets that are shared by all v4.5 Portable Library C# projects.
|
|
|
|
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">
|
|
|
|
<PropertyGroup>
|
|
<!-- Currently we force these to override what's in the project file, but by the time
|
|
we ship, they should respect user settings -->
|
|
<TargetFrameworkIdentifier>.NETServer</TargetFrameworkIdentifier>
|
|
<TargetFrameworkVersion>v1.0</TargetFrameworkVersion>
|
|
<TargetFrameworkProfile></TargetFrameworkProfile>
|
|
|
|
<TargetFrameworkMonikerDisplayName>.NET for Server</TargetFrameworkMonikerDisplayName>
|
|
|
|
<!-- Temporary until we are installed on the box under Reference Assemblies -->
|
|
<TargetFrameworkRootPath>$(MSBuildThisFileDirectory)</TargetFrameworkRootPath>
|
|
<FrameworkPathOverride>$(TargetFrameworkRootPath)</FrameworkPathOverride>
|
|
<_FullFrameworkReferenceAssemblyPaths>$(FrameworkPathOverride)</_FullFrameworkReferenceAssemblyPaths>
|
|
<_TargetFrameworkDirectories>$(FrameworkPathOverride)</_TargetFrameworkDirectories>
|
|
<NoStdLib>true</NoStdLib>
|
|
|
|
<!-- Automatically reference all assemblies in the target framework -->
|
|
<ImplicitlyExpandTargetFramework Condition="'$(ImplicitlyExpandTargetFramework)' == '' ">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>
|