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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2015-03-18 13:57:30 +0300
committerMarek Safar <marek.safar@gmail.com>2015-03-18 14:01:10 +0300
commit88a127537750927412980eb90da0334f8d4a1576 (patch)
tree9520411710077897e2a9b04b4b65ff613f3398bc /tools
parent940732839d57dce391014fa01da88dc424c8f619 (diff)
[corlib] Default Egypt calendar is gregorian. Fixes #27725
Diffstat (limited to 'tools')
-rw-r--r--tools/locale-builder/Driver.cs2
-rw-r--r--tools/locale-builder/locale-builder.csproj4
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/locale-builder/Driver.cs b/tools/locale-builder/Driver.cs
index f42f5cf90b4..1d709afa1d9 100644
--- a/tools/locale-builder/Driver.cs
+++ b/tools/locale-builder/Driver.cs
@@ -973,7 +973,7 @@ namespace Mono.Tools.LocaleBuilder
string calendar;
// Default calendar is for now always "gregorian"
- switch (ci.Name) {
+ switch (ci.OriginalName) {
case "th": case "th-TH":
calendar = "buddhist";
ci.CalendarType = CalendarType.ThaiBuddhist; // typeof (ThaiBuddhistCalendar);
diff --git a/tools/locale-builder/locale-builder.csproj b/tools/locale-builder/locale-builder.csproj
index 6700ba970b6..980cd3e5df8 100644
--- a/tools/locale-builder/locale-builder.csproj
+++ b/tools/locale-builder/locale-builder.csproj
@@ -7,10 +7,12 @@
<OutputType>Exe</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>ConsoleApplication</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
+ <ProductVersion>8.0.30703</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>