From 9a5b7af83d421083e2175daeeff452df5ae6471c Mon Sep 17 00:00:00 2001 From: Jeff Genovy Date: Mon, 22 Oct 2018 23:12:07 -0700 Subject: [PATCH] ICU-13180 Support skiping building the UWP projects with a command line MSBuild option. --- icu4c/readme.html | 31 ++++++++++++++----- icu4c/source/common/common.vcxproj | 10 +++--- icu4c/source/common/common_uwp.vcxproj | 15 +++++---- icu4c/source/data/makedata.vcxproj | 4 +-- icu4c/source/data/makedata_uwp.vcxproj | 9 ++++-- icu4c/source/extra/uconv/uconv.vcxproj | 6 ++-- icu4c/source/i18n/i18n.vcxproj | 10 +++--- icu4c/source/i18n/i18n_uwp.vcxproj | 15 +++++---- icu4c/source/io/io.vcxproj | 10 +++--- icu4c/source/layoutex/layoutex.vcxproj | 7 ++--- icu4c/source/samples/break/break.vcxproj | 7 ++--- icu4c/source/samples/cal/cal.vcxproj | 13 ++++---- icu4c/source/samples/case/case.vcxproj | 7 ++--- icu4c/source/samples/citer/citer.vcxproj | 7 ++--- icu4c/source/samples/coll/coll.vcxproj | 7 ++--- icu4c/source/samples/csdet/csdet.vcxproj | 7 ++--- icu4c/source/samples/date/date.vcxproj | 7 ++--- icu4c/source/samples/datefmt/datefmt.vcxproj | 7 ++--- .../dtitvfmtsample/dtitvfmtsample.vcxproj | 5 ++- .../samples/dtptngsample/dtptngsample.vcxproj | 5 ++- icu4c/source/samples/layout/layout.vcxproj | 7 ++--- icu4c/source/samples/msgfmt/msgfmt.vcxproj | 7 ++--- icu4c/source/samples/numfmt/numfmt.vcxproj | 7 ++--- .../plurfmtsample/plurfmtsample.vcxproj | 5 ++- icu4c/source/samples/props/props.vcxproj | 7 ++--- icu4c/source/samples/strsrch/strsrch.vcxproj | 7 ++--- .../source/samples/translit/translit.vcxproj | 7 ++--- icu4c/source/samples/uciter8/uciter8.vcxproj | 7 ++--- icu4c/source/samples/ucnv/ucnv.vcxproj | 7 ++--- icu4c/source/samples/udata/reader.vcxproj | 7 ++--- icu4c/source/samples/udata/writer.vcxproj | 7 ++--- icu4c/source/samples/ugrep/ugrep.vcxproj | 7 ++--- icu4c/source/samples/uresb/resources.vcxproj | 7 ++--- icu4c/source/samples/uresb/uresb.vcxproj | 7 ++--- icu4c/source/samples/ustring/ustring.vcxproj | 7 ++--- icu4c/source/stubdata/stubdata.vcxproj | 10 +++--- icu4c/source/test/cintltst/cintltst.vcxproj | 7 ++--- icu4c/source/test/intltest/intltest.vcxproj | 6 ++-- icu4c/source/test/iotest/iotest.vcxproj | 7 ++--- icu4c/source/tools/ctestfw/ctestfw.vcxproj | 7 ++--- icu4c/source/tools/genbrk/genbrk.vcxproj | 7 ++--- icu4c/source/tools/genccode/genccode.vcxproj | 7 ++--- icu4c/source/tools/gencfu/gencfu.vcxproj | 8 ++--- icu4c/source/tools/gencmn/gencmn.vcxproj | 7 ++--- icu4c/source/tools/gencnval/gencnval.vcxproj | 7 ++--- icu4c/source/tools/gendict/gendict.vcxproj | 7 ++--- icu4c/source/tools/gennorm2/gennorm2.vcxproj | 8 ++--- icu4c/source/tools/genrb/derb.vcxproj | 7 ++--- icu4c/source/tools/genrb/genrb.vcxproj | 7 ++--- icu4c/source/tools/gensprep/gensprep.vcxproj | 7 ++--- icu4c/source/tools/gentest/gentest.vcxproj | 7 ++--- icu4c/source/tools/icuinfo/icuinfo.vcxproj | 7 ++--- icu4c/source/tools/icuinfo/testplug.vcxproj | 7 ++--- icu4c/source/tools/icupkg/icupkg.vcxproj | 8 ++--- icu4c/source/tools/makeconv/makeconv.vcxproj | 7 ++--- icu4c/source/tools/pkgdata/pkgdata.vcxproj | 7 ++--- icu4c/source/tools/toolutil/toolutil.vcxproj | 7 ++--- 57 files changed, 214 insertions(+), 237 deletions(-) diff --git a/icu4c/readme.html b/icu4c/readme.html index dba98b462ea..291f74efe95 100644 --- a/icu4c/readme.html +++ b/icu4c/readme.html @@ -814,8 +814,10 @@
  • If you are building using 'Visual Studio 2015' instead, or if you are building the UWP projects and you have a different version of the Windows 10 SDK installed you will first need to modify the two "Build.Windows.*.props" files in the "allinone" directory before you can open the "allinone" solution file. - Please see the notes below about building with other versions of Visual Studio or the - notes on re-targeting the Windows 10 SDK for the UWP projects for details.
  • + Please see the notes below about building with other versions of Visual Studio and the + notes on re-targeting the Windows 10 SDK for the UWP projects for details. Alternatively, + you can skip building the UWP projects entirely as well. +
  • Set the active platform to "Win32" or "x64" (See Windows platform note below) and configuration to "Debug" or "Release" (See Windows configuration note below).
  • @@ -859,7 +861,7 @@ project to "iotest", and press Ctrl+F5 to run it. Make sure that it passes without any errors. - +
  • You are now able to develop applications with ICU by using the libraries and tools in <ICU>\bin\. The headers are in @@ -926,20 +928,35 @@
  • You can then use either 'msbuild' directly, or you can use the 'devenv.com' command to build ICU.
  • Using MSBUILD:
  • Using devenv.com:
  • +

    Skipping the UWP Projects on the Command Line Note: + You can skip (or omit) building the UWP projects on the command line by passing the argument + 'SkipUWP=true' to either MSBUILD or devenv.

    + + +

    You can also use Cygwin with the MSVC compiler to build ICU, and you can refer to the How To Build And Install On Windows with Cygwin section for more details.

    diff --git a/icu4c/source/common/common.vcxproj b/icu4c/source/common/common.vcxproj index 7df7f15fa42..399c175ac72 100644 --- a/icu4c/source/common/common.vcxproj +++ b/icu4c/source/common/common.vcxproj @@ -1,18 +1,18 @@  - - - - {73C0A65B-D1F2-4DE1-B3A6-15DAD2C23F3D} - DynamicLibrary false MultiByte + + + + + diff --git a/icu4c/source/common/common_uwp.vcxproj b/icu4c/source/common/common_uwp.vcxproj index f532cff2f89..c06ef3db39a 100644 --- a/icu4c/source/common/common_uwp.vcxproj +++ b/icu4c/source/common/common_uwp.vcxproj @@ -1,9 +1,5 @@  - - - - Debug @@ -35,12 +31,16 @@ DynamicLibrary en-US - DynamicLibrary false MultiByte + + + + + @@ -574,7 +574,10 @@ - + + + + diff --git a/icu4c/source/data/makedata.vcxproj b/icu4c/source/data/makedata.vcxproj index 9c94ae40c16..8381142f393 100644 --- a/icu4c/source/data/makedata.vcxproj +++ b/icu4c/source/data/makedata.vcxproj @@ -1,7 +1,5 @@  - - {D9DF7F2F-93B7-4810-B5CD-96F4F33C079B} MakeFileProj @@ -9,6 +7,8 @@ false + + diff --git a/icu4c/source/data/makedata_uwp.vcxproj b/icu4c/source/data/makedata_uwp.vcxproj index 8573b36e456..464ce27bad3 100644 --- a/icu4c/source/data/makedata_uwp.vcxproj +++ b/icu4c/source/data/makedata_uwp.vcxproj @@ -1,7 +1,5 @@  - - Debug @@ -35,6 +33,8 @@ Makefile false + + @@ -127,7 +127,10 @@ false - + + + + \ No newline at end of file diff --git a/icu4c/source/extra/uconv/uconv.vcxproj b/icu4c/source/extra/uconv/uconv.vcxproj index ff28d9b159b..750e5459a80 100644 --- a/icu4c/source/extra/uconv/uconv.vcxproj +++ b/icu4c/source/extra/uconv/uconv.vcxproj @@ -1,16 +1,16 @@  - - {DBA4088D-F6F9-4F8F-8820-082A4765C16C} - Application false MultiByte + + + diff --git a/icu4c/source/i18n/i18n.vcxproj b/icu4c/source/i18n/i18n.vcxproj index 0e222a54d7c..32396817aa6 100644 --- a/icu4c/source/i18n/i18n.vcxproj +++ b/icu4c/source/i18n/i18n.vcxproj @@ -1,18 +1,18 @@  - - - - {0178B127-6269-407D-B112-93877BB62776} - DynamicLibrary false MultiByte + + + + + diff --git a/icu4c/source/i18n/i18n_uwp.vcxproj b/icu4c/source/i18n/i18n_uwp.vcxproj index 49604f787e3..367dbed3364 100644 --- a/icu4c/source/i18n/i18n_uwp.vcxproj +++ b/icu4c/source/i18n/i18n_uwp.vcxproj @@ -1,9 +1,5 @@  - - - - Debug @@ -35,12 +31,16 @@ DynamicLibrary en-US - DynamicLibrary false MultiByte + + + + + @@ -666,7 +666,10 @@ - + + + + \ No newline at end of file diff --git a/icu4c/source/io/io.vcxproj b/icu4c/source/io/io.vcxproj index 7e7b5cd9b8a..20132a1c49f 100644 --- a/icu4c/source/io/io.vcxproj +++ b/icu4c/source/io/io.vcxproj @@ -1,18 +1,18 @@  - - - - {C2B04507-2521-4801-BF0D-5FD79D6D518C} - DynamicLibrary false MultiByte + + + + + diff --git a/icu4c/source/layoutex/layoutex.vcxproj b/icu4c/source/layoutex/layoutex.vcxproj index 2bc31e5e272..535a028903b 100644 --- a/icu4c/source/layoutex/layoutex.vcxproj +++ b/icu4c/source/layoutex/layoutex.vcxproj @@ -1,18 +1,17 @@  - - - {37FC2C7F-1904-4811-8955-2F478830EAD1} layoutex - DynamicLibrary false MultiByte + + + diff --git a/icu4c/source/samples/break/break.vcxproj b/icu4c/source/samples/break/break.vcxproj index 1737d9328b7..165f95afe2b 100644 --- a/icu4c/source/samples/break/break.vcxproj +++ b/icu4c/source/samples/break/break.vcxproj @@ -1,17 +1,16 @@  - - - {DEEADF02-9C14-4854-A395-E505D2904D65} - Application false MultiByte + + + diff --git a/icu4c/source/samples/cal/cal.vcxproj b/icu4c/source/samples/cal/cal.vcxproj index a5aad702677..a1fd6c68e5f 100644 --- a/icu4c/source/samples/cal/cal.vcxproj +++ b/icu4c/source/samples/cal/cal.vcxproj @@ -1,17 +1,16 @@  - - - - - {F7659D77-09CF-4FE9-ACEE-927287AA9509} - - Application false MultiByte + + {F7659D77-09CF-4FE9-ACEE-927287AA9509} + + + + diff --git a/icu4c/source/samples/case/case.vcxproj b/icu4c/source/samples/case/case.vcxproj index 222ebedaef3..f58dd01d900 100644 --- a/icu4c/source/samples/case/case.vcxproj +++ b/icu4c/source/samples/case/case.vcxproj @@ -1,17 +1,16 @@  - - - {2316BE8C-189D-4C8B-B506-9D9EE25AC46D} - Application false MultiByte + + + diff --git a/icu4c/source/samples/citer/citer.vcxproj b/icu4c/source/samples/citer/citer.vcxproj index 9e7250d74c6..b7a9ca127c8 100644 --- a/icu4c/source/samples/citer/citer.vcxproj +++ b/icu4c/source/samples/citer/citer.vcxproj @@ -1,17 +1,16 @@  - - - {247E2681-6C84-408B-B40C-5DB50BC5E18F} - Application false MultiByte + + + diff --git a/icu4c/source/samples/coll/coll.vcxproj b/icu4c/source/samples/coll/coll.vcxproj index 453bcd4bc8e..86e03eda374 100644 --- a/icu4c/source/samples/coll/coll.vcxproj +++ b/icu4c/source/samples/coll/coll.vcxproj @@ -1,17 +1,16 @@  - - - {7664D0D2-0263-4BFB-AE19-9A1CAD231440} - Application false MultiByte + + + diff --git a/icu4c/source/samples/csdet/csdet.vcxproj b/icu4c/source/samples/csdet/csdet.vcxproj index fc4cb592f39..d0e5fbaed69 100644 --- a/icu4c/source/samples/csdet/csdet.vcxproj +++ b/icu4c/source/samples/csdet/csdet.vcxproj @@ -1,18 +1,17 @@  - - - {683745AD-3BC2-4B89-898B-93490D7F2757} Win32Proj - Application false MultiByte + + + diff --git a/icu4c/source/samples/date/date.vcxproj b/icu4c/source/samples/date/date.vcxproj index 83ab770be46..3cb82d9a3e7 100644 --- a/icu4c/source/samples/date/date.vcxproj +++ b/icu4c/source/samples/date/date.vcxproj @@ -1,17 +1,16 @@  - - - {38B5751A-C6F9-4409-950C-F4F9DA17275F} - Application false MultiByte + + + diff --git a/icu4c/source/samples/datefmt/datefmt.vcxproj b/icu4c/source/samples/datefmt/datefmt.vcxproj index ca610f5f129..854032e343a 100644 --- a/icu4c/source/samples/datefmt/datefmt.vcxproj +++ b/icu4c/source/samples/datefmt/datefmt.vcxproj @@ -1,17 +1,16 @@  - - - {6D592DB7-B9C8-4B1B-A1C1-F9A9EB4FD4E4} - Application false MultiByte + + + diff --git a/icu4c/source/samples/dtitvfmtsample/dtitvfmtsample.vcxproj b/icu4c/source/samples/dtitvfmtsample/dtitvfmtsample.vcxproj index db22407c399..aea18b217f3 100644 --- a/icu4c/source/samples/dtitvfmtsample/dtitvfmtsample.vcxproj +++ b/icu4c/source/samples/dtitvfmtsample/dtitvfmtsample.vcxproj @@ -1,13 +1,12 @@  - - - {8945255B-473B-4C47-9425-E92384338CAA} samples + + Application true diff --git a/icu4c/source/samples/dtptngsample/dtptngsample.vcxproj b/icu4c/source/samples/dtptngsample/dtptngsample.vcxproj index d2e94665bd2..542b3439f03 100644 --- a/icu4c/source/samples/dtptngsample/dtptngsample.vcxproj +++ b/icu4c/source/samples/dtptngsample/dtptngsample.vcxproj @@ -1,13 +1,12 @@  - - - {115886F0-7DFB-4B8B-BE79-83162EE8713B} samples + + Application true diff --git a/icu4c/source/samples/layout/layout.vcxproj b/icu4c/source/samples/layout/layout.vcxproj index b49dca6ac30..4b1fb1a1cdc 100644 --- a/icu4c/source/samples/layout/layout.vcxproj +++ b/icu4c/source/samples/layout/layout.vcxproj @@ -1,17 +1,16 @@  - - - {497500ED-DE1D-4B20-B529-F41B5A0FBEEB} - Application false MultiByte + + + diff --git a/icu4c/source/samples/msgfmt/msgfmt.vcxproj b/icu4c/source/samples/msgfmt/msgfmt.vcxproj index fd90eac9736..8e649a71e88 100644 --- a/icu4c/source/samples/msgfmt/msgfmt.vcxproj +++ b/icu4c/source/samples/msgfmt/msgfmt.vcxproj @@ -1,17 +1,16 @@  - - - {5FF1D1A2-1630-446C-B6EA-93EFD4F975C3} - Application false MultiByte + + + diff --git a/icu4c/source/samples/numfmt/numfmt.vcxproj b/icu4c/source/samples/numfmt/numfmt.vcxproj index 0cd1e173977..61b90fe6711 100644 --- a/icu4c/source/samples/numfmt/numfmt.vcxproj +++ b/icu4c/source/samples/numfmt/numfmt.vcxproj @@ -1,17 +1,16 @@  - - - {721FBD47-E458-4C35-90DA-FF192907D5E2} - Application false MultiByte + + + diff --git a/icu4c/source/samples/plurfmtsample/plurfmtsample.vcxproj b/icu4c/source/samples/plurfmtsample/plurfmtsample.vcxproj index 859213ec331..c0d3246ae82 100644 --- a/icu4c/source/samples/plurfmtsample/plurfmtsample.vcxproj +++ b/icu4c/source/samples/plurfmtsample/plurfmtsample.vcxproj @@ -1,12 +1,11 @@  - - - {B500B731-ED1A-4761-94ED-B22DFE25FF2B} + + Application true diff --git a/icu4c/source/samples/props/props.vcxproj b/icu4c/source/samples/props/props.vcxproj index 839cec9690c..6137a4888f8 100644 --- a/icu4c/source/samples/props/props.vcxproj +++ b/icu4c/source/samples/props/props.vcxproj @@ -1,17 +1,16 @@  - - - {ABE4CD17-8ED8-4DE6-ABDE-CDEFC220CF60} - Application false MultiByte + + + diff --git a/icu4c/source/samples/strsrch/strsrch.vcxproj b/icu4c/source/samples/strsrch/strsrch.vcxproj index 35ea8ae3d3b..bf8df5274c0 100644 --- a/icu4c/source/samples/strsrch/strsrch.vcxproj +++ b/icu4c/source/samples/strsrch/strsrch.vcxproj @@ -1,17 +1,16 @@  - - - {E97790D1-7ABE-4C8E-9627-251ABEAA3EEC} - Application false MultiByte + + + diff --git a/icu4c/source/samples/translit/translit.vcxproj b/icu4c/source/samples/translit/translit.vcxproj index 6925f3093f1..bd747ef5c13 100644 --- a/icu4c/source/samples/translit/translit.vcxproj +++ b/icu4c/source/samples/translit/translit.vcxproj @@ -1,17 +1,16 @@  - - - {D1BEC124-303A-4F44-BA70-55769B8FE96A} - Application false MultiByte + + + diff --git a/icu4c/source/samples/uciter8/uciter8.vcxproj b/icu4c/source/samples/uciter8/uciter8.vcxproj index 0318e7039b3..39e32562ab6 100644 --- a/icu4c/source/samples/uciter8/uciter8.vcxproj +++ b/icu4c/source/samples/uciter8/uciter8.vcxproj @@ -1,17 +1,16 @@  - - - {94379DD9-E6CC-47AC-8E62-0A4ABD8EB121} - Application false MultiByte + + + diff --git a/icu4c/source/samples/ucnv/ucnv.vcxproj b/icu4c/source/samples/ucnv/ucnv.vcxproj index 50dec385734..e17e5552e64 100644 --- a/icu4c/source/samples/ucnv/ucnv.vcxproj +++ b/icu4c/source/samples/ucnv/ucnv.vcxproj @@ -1,17 +1,16 @@  - - - {8C95060E-61F5-464E-BB42-95B788C0D7E4} - Application false MultiByte + + + diff --git a/icu4c/source/samples/udata/reader.vcxproj b/icu4c/source/samples/udata/reader.vcxproj index 671ba15f27c..24408b7f004 100644 --- a/icu4c/source/samples/udata/reader.vcxproj +++ b/icu4c/source/samples/udata/reader.vcxproj @@ -1,17 +1,16 @@  - - - {BFEFC070-C5A9-42E3-BAAE-A51FB2C4BA28} - Application false MultiByte + + + diff --git a/icu4c/source/samples/udata/writer.vcxproj b/icu4c/source/samples/udata/writer.vcxproj index f6236b9c60a..ee57b6123f8 100644 --- a/icu4c/source/samples/udata/writer.vcxproj +++ b/icu4c/source/samples/udata/writer.vcxproj @@ -1,17 +1,16 @@  - - - {40A90302-F173-4629-A003-F571D2D93D16} - Application false MultiByte + + + diff --git a/icu4c/source/samples/ugrep/ugrep.vcxproj b/icu4c/source/samples/ugrep/ugrep.vcxproj index 799f821f51c..5d7416fadc7 100644 --- a/icu4c/source/samples/ugrep/ugrep.vcxproj +++ b/icu4c/source/samples/ugrep/ugrep.vcxproj @@ -1,17 +1,16 @@  - - - {63166CEB-02CC-472C-B3B7-E6C559939BDA} - Application false MultiByte + + + diff --git a/icu4c/source/samples/uresb/resources.vcxproj b/icu4c/source/samples/uresb/resources.vcxproj index 55e61b45989..44755ac1f62 100644 --- a/icu4c/source/samples/uresb/resources.vcxproj +++ b/icu4c/source/samples/uresb/resources.vcxproj @@ -1,16 +1,15 @@  - - - {69437707-2FEF-4E2C-8C3F-6E6B3D241366} MakeFileProj - Makefile + + + diff --git a/icu4c/source/samples/uresb/uresb.vcxproj b/icu4c/source/samples/uresb/uresb.vcxproj index 6fdd4d88cd8..49c9a1b31aa 100644 --- a/icu4c/source/samples/uresb/uresb.vcxproj +++ b/icu4c/source/samples/uresb/uresb.vcxproj @@ -1,17 +1,16 @@  - - - {92580BF4-F4DA-4024-B3F8-444F982BC72F} - Application false MultiByte + + + diff --git a/icu4c/source/samples/ustring/ustring.vcxproj b/icu4c/source/samples/ustring/ustring.vcxproj index 10316fcab84..d7b03d4b9b0 100644 --- a/icu4c/source/samples/ustring/ustring.vcxproj +++ b/icu4c/source/samples/ustring/ustring.vcxproj @@ -1,17 +1,16 @@  - - - {FF92E6C1-BACA-41AD-BB6D-ECA19C05573E} - Application false MultiByte + + + diff --git a/icu4c/source/stubdata/stubdata.vcxproj b/icu4c/source/stubdata/stubdata.vcxproj index 9af0c4c8182..038749750ed 100644 --- a/icu4c/source/stubdata/stubdata.vcxproj +++ b/icu4c/source/stubdata/stubdata.vcxproj @@ -1,18 +1,18 @@  - - - - {203EC78A-0531-43F0-A636-285439BDE025} - DynamicLibrary false MultiByte + + + + + diff --git a/icu4c/source/test/cintltst/cintltst.vcxproj b/icu4c/source/test/cintltst/cintltst.vcxproj index 6388eb84785..dd040a69cba 100644 --- a/icu4c/source/test/cintltst/cintltst.vcxproj +++ b/icu4c/source/test/cintltst/cintltst.vcxproj @@ -1,17 +1,16 @@  - - - {3D1246AE-1B32-479B-BECA-AEFA97BE2321} - Application false MultiByte + + + diff --git a/icu4c/source/test/intltest/intltest.vcxproj b/icu4c/source/test/intltest/intltest.vcxproj index 50e0e2e89c2..df00ebb8829 100644 --- a/icu4c/source/test/intltest/intltest.vcxproj +++ b/icu4c/source/test/intltest/intltest.vcxproj @@ -1,17 +1,17 @@  - - {73632960-B3A6-464D-83A3-4B43365F19B8} intltest - Application false MultiByte + + + diff --git a/icu4c/source/test/iotest/iotest.vcxproj b/icu4c/source/test/iotest/iotest.vcxproj index f67c0b19a48..518347ae8d0 100644 --- a/icu4c/source/test/iotest/iotest.vcxproj +++ b/icu4c/source/test/iotest/iotest.vcxproj @@ -1,17 +1,16 @@  - - - {E4993E82-D68A-46CA-BAE0-9D35E172E46F} - Application false MultiByte + + + diff --git a/icu4c/source/tools/ctestfw/ctestfw.vcxproj b/icu4c/source/tools/ctestfw/ctestfw.vcxproj index baabf4f3814..e9f8ce302b5 100644 --- a/icu4c/source/tools/ctestfw/ctestfw.vcxproj +++ b/icu4c/source/tools/ctestfw/ctestfw.vcxproj @@ -1,17 +1,16 @@  - - - {ECA6B435-B4FA-4F9F-BF95-F451D078FC47} - DynamicLibrary false MultiByte + + + diff --git a/icu4c/source/tools/genbrk/genbrk.vcxproj b/icu4c/source/tools/genbrk/genbrk.vcxproj index b8aa0ab6998..46f5b108557 100644 --- a/icu4c/source/tools/genbrk/genbrk.vcxproj +++ b/icu4c/source/tools/genbrk/genbrk.vcxproj @@ -1,17 +1,16 @@  - - - {C2BE5000-7501-4E87-9724-B8D82494FAE6} - Application false MultiByte + + + diff --git a/icu4c/source/tools/genccode/genccode.vcxproj b/icu4c/source/tools/genccode/genccode.vcxproj index e7dc0e535c8..1bff87b98b6 100644 --- a/icu4c/source/tools/genccode/genccode.vcxproj +++ b/icu4c/source/tools/genccode/genccode.vcxproj @@ -1,17 +1,16 @@  - - - {FDD3C4F2-9805-44EB-9A77-BC1C1C95B547} - Application false MultiByte + + + diff --git a/icu4c/source/tools/gencfu/gencfu.vcxproj b/icu4c/source/tools/gencfu/gencfu.vcxproj index fbae8f54fdc..a857bd7eda7 100644 --- a/icu4c/source/tools/gencfu/gencfu.vcxproj +++ b/icu4c/source/tools/gencfu/gencfu.vcxproj @@ -1,18 +1,16 @@  - - - {691EE0C0-DC57-4A48-8AEE-8ED75EB3A057} - Win32Proj - Application false MultiByte + + + diff --git a/icu4c/source/tools/gencmn/gencmn.vcxproj b/icu4c/source/tools/gencmn/gencmn.vcxproj index 87aeef33621..5d0b2746514 100644 --- a/icu4c/source/tools/gencmn/gencmn.vcxproj +++ b/icu4c/source/tools/gencmn/gencmn.vcxproj @@ -1,17 +1,16 @@  - - - {A8D36F8D-09E6-4174-91C3-7BEAA9C3F04F} - Application false MultiByte + + + diff --git a/icu4c/source/tools/gencnval/gencnval.vcxproj b/icu4c/source/tools/gencnval/gencnval.vcxproj index d2becad2b90..6423bc31d80 100644 --- a/icu4c/source/tools/gencnval/gencnval.vcxproj +++ b/icu4c/source/tools/gencnval/gencnval.vcxproj @@ -1,17 +1,16 @@  - - - {8B41752B-5A52-41E4-B7E0-07921C0CC6BF} - Application false MultiByte + + + diff --git a/icu4c/source/tools/gendict/gendict.vcxproj b/icu4c/source/tools/gendict/gendict.vcxproj index a419abb475e..7e203bc2991 100644 --- a/icu4c/source/tools/gendict/gendict.vcxproj +++ b/icu4c/source/tools/gendict/gendict.vcxproj @@ -1,17 +1,16 @@  - - - {9D4211F7-2C77-439C-82F0-30A4E43BA569} - Application false MultiByte + + + diff --git a/icu4c/source/tools/gennorm2/gennorm2.vcxproj b/icu4c/source/tools/gennorm2/gennorm2.vcxproj index ec408e27695..c1e5d7b5159 100644 --- a/icu4c/source/tools/gennorm2/gennorm2.vcxproj +++ b/icu4c/source/tools/gennorm2/gennorm2.vcxproj @@ -1,14 +1,9 @@  - - - {C7891A65-80AB-4245-912E-5F1E17B0E6C4} gennorm2 - Win32Proj - Application Unicode @@ -16,6 +11,9 @@ true + + + diff --git a/icu4c/source/tools/genrb/derb.vcxproj b/icu4c/source/tools/genrb/derb.vcxproj index d76c3d27def..3361bfb9e92 100644 --- a/icu4c/source/tools/genrb/derb.vcxproj +++ b/icu4c/source/tools/genrb/derb.vcxproj @@ -1,17 +1,16 @@  - - - {D3065ADB-8820-4CC7-9B6C-9510833961A3} - Application false MultiByte + + + diff --git a/icu4c/source/tools/genrb/genrb.vcxproj b/icu4c/source/tools/genrb/genrb.vcxproj index 13c8aa855d2..1bbb1f10c29 100644 --- a/icu4c/source/tools/genrb/genrb.vcxproj +++ b/icu4c/source/tools/genrb/genrb.vcxproj @@ -1,17 +1,16 @@  - - - {97521D06-EC47-45D4-8BD0-9E16B3F93B2A} - Application false MultiByte + + + diff --git a/icu4c/source/tools/gensprep/gensprep.vcxproj b/icu4c/source/tools/gensprep/gensprep.vcxproj index 3dde2db8e86..a0a13c5848c 100644 --- a/icu4c/source/tools/gensprep/gensprep.vcxproj +++ b/icu4c/source/tools/gensprep/gensprep.vcxproj @@ -1,17 +1,16 @@  - - - {631C23CE-6C1D-4875-88F0-85E0A42B36EA} - Application false MultiByte + + + diff --git a/icu4c/source/tools/gentest/gentest.vcxproj b/icu4c/source/tools/gentest/gentest.vcxproj index 4104b485974..dd4ddc8fe9f 100644 --- a/icu4c/source/tools/gentest/gentest.vcxproj +++ b/icu4c/source/tools/gentest/gentest.vcxproj @@ -1,18 +1,17 @@  - - - {77C78066-746F-4EA6-B3FE-B8C8A4A97891} gentest - Application false MultiByte + + + diff --git a/icu4c/source/tools/icuinfo/icuinfo.vcxproj b/icu4c/source/tools/icuinfo/icuinfo.vcxproj index ba332864a71..4597f9455d3 100644 --- a/icu4c/source/tools/icuinfo/icuinfo.vcxproj +++ b/icu4c/source/tools/icuinfo/icuinfo.vcxproj @@ -1,17 +1,16 @@  - - - {E7611F49-F088-4175-9446-6111444E72C8} - Application false MultiByte + + + diff --git a/icu4c/source/tools/icuinfo/testplug.vcxproj b/icu4c/source/tools/icuinfo/testplug.vcxproj index 058c495322d..a288ec9b03f 100644 --- a/icu4c/source/tools/icuinfo/testplug.vcxproj +++ b/icu4c/source/tools/icuinfo/testplug.vcxproj @@ -1,17 +1,16 @@  - - - {659D0C08-D4ED-4BF3-B02B-2D8D4B5A7A7A} - DynamicLibrary false MultiByte + + + diff --git a/icu4c/source/tools/icupkg/icupkg.vcxproj b/icu4c/source/tools/icupkg/icupkg.vcxproj index f75d40a4077..ffbef9a880c 100644 --- a/icu4c/source/tools/icupkg/icupkg.vcxproj +++ b/icu4c/source/tools/icupkg/icupkg.vcxproj @@ -1,18 +1,16 @@  - - - {62D4B15D-7A90-4ECB-BA19-5E021D6A21BC} - Win32Proj - Application false MultiByte + + + diff --git a/icu4c/source/tools/makeconv/makeconv.vcxproj b/icu4c/source/tools/makeconv/makeconv.vcxproj index b5a15279e6c..7471759f6f4 100644 --- a/icu4c/source/tools/makeconv/makeconv.vcxproj +++ b/icu4c/source/tools/makeconv/makeconv.vcxproj @@ -1,17 +1,16 @@  - - - {F5AD9738-1A3D-4906-B9C4-A7D9CE33DC2C} - Application false MultiByte + + + diff --git a/icu4c/source/tools/pkgdata/pkgdata.vcxproj b/icu4c/source/tools/pkgdata/pkgdata.vcxproj index 680cc2f799b..955f1724843 100644 --- a/icu4c/source/tools/pkgdata/pkgdata.vcxproj +++ b/icu4c/source/tools/pkgdata/pkgdata.vcxproj @@ -1,17 +1,16 @@  - - - {4C8454FE-81D3-4CA3-9927-29BA96F03DAC} - Application false MultiByte + + + diff --git a/icu4c/source/tools/toolutil/toolutil.vcxproj b/icu4c/source/tools/toolutil/toolutil.vcxproj index bf379f20789..ad5e8dd828f 100644 --- a/icu4c/source/tools/toolutil/toolutil.vcxproj +++ b/icu4c/source/tools/toolutil/toolutil.vcxproj @@ -1,17 +1,16 @@  - - - {6B231032-3CB5-4EED-9210-810D666A23A0} - DynamicLibrary false MultiByte + + +