Browse Source

Fixed SharpDevelop.Build.VisualBasic.targets to set PlatformFamilyName/PlatformID default values when the .vbproj file does not specify any.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2435 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 19 years ago
parent
commit
db19e3b31b
  1. 2
      src/Libraries/ICSharpCode.Build.Tasks/Project/SharpDevelop.Build.VisualBasic.targets

2
src/Libraries/ICSharpCode.Build.Tasks/Project/SharpDevelop.Build.VisualBasic.targets

@ -161,7 +161,7 @@
<!-- Compact framework property adjustments: --> <!-- Compact framework property adjustments: -->
<!-- When StdLib is not set, set it to true and add reference to mscorlib --> <!-- When StdLib is not set, set it to true and add reference to mscorlib -->
<!-- Set PlatformFamilyName and PlatformID if required --> <!-- Set PlatformFamilyName and PlatformID if required -->
<PropertyGroup Condition=" '$(SharpDevelopTargetFrameworkClass)' == 'CF' "> <PropertyGroup Condition=" '$(SharpDevelopUseCompactFramework)' == 'true' ">
<PlatformFamilyName Condition=" '$(PlatformFamilyName)' == '' ">PocketPC</PlatformFamilyName> <PlatformFamilyName Condition=" '$(PlatformFamilyName)' == '' ">PocketPC</PlatformFamilyName>
<PlatformID Condition=" '$(PlatformID)' == '' ">WinCE</PlatformID> <PlatformID Condition=" '$(PlatformID)' == '' ">WinCE</PlatformID>

Loading…
Cancel
Save