From: ttp Date: Sun, 4 Jan 2009 03:17:45 +0000 (+0000) Subject: AppliStation,全部のバージョン表記を1.2.1にしたりした。また、win7がwin2008と間違って認識するバグの修正 X-Git-Tag: v1.3.0~30 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=21eb65c815aab003cce198d11e71efb9fad3fd16;p=applistation%2FAppliStation.git AppliStation,全部のバージョン表記を1.2.1にしたりした。また、win7がwin2008と間違って認識するバグの修正 git-svn-id: http://localhost/svn/AppliStation/trunk@1012 34ed2c89-c49f-4a4b-abdb-c318350108cf --- diff --git a/AppliStation/AssemblyInfo.cs b/AppliStation/AssemblyInfo.cs index 6224fbb..e8d5eb3 100644 --- a/AppliStation/AssemblyInfo.cs +++ b/AppliStation/AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Team AppliStation")] [assembly: AssemblyProduct("AppliStation")] -[assembly: AssemblyCopyright("Copyright (c) 2007-2008 Team AppliStation")] +[assembly: AssemblyCopyright("Copyright (c) 2007-2009 Team AppliStation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -28,4 +28,4 @@ using System.Runtime.InteropServices; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.2.0.*")] +[assembly: AssemblyVersion("1.2.1.*")] diff --git a/all-get/AssemblyInfo.cs b/all-get/AssemblyInfo.cs index 98b8b43..1e2b808 100644 --- a/all-get/AssemblyInfo.cs +++ b/all-get/AssemblyInfo.cs @@ -28,4 +28,4 @@ using System.Runtime.InteropServices; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.2.0.*")] +[assembly: AssemblyVersion("1.2.1.*")] diff --git a/archive-inst/AssemblyInfo.cs b/archive-inst/AssemblyInfo.cs index 8bc7956..15671db 100644 --- a/archive-inst/AssemblyInfo.cs +++ b/archive-inst/AssemblyInfo.cs @@ -28,4 +28,4 @@ using System.Runtime.InteropServices; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.2.0.*")] +[assembly: AssemblyVersion("1.2.1.*")] diff --git a/na-get-lib/AssemblyInfo.cs b/na-get-lib/AssemblyInfo.cs index 762e73d..3b9958f 100644 --- a/na-get-lib/AssemblyInfo.cs +++ b/na-get-lib/AssemblyInfo.cs @@ -12,7 +12,7 @@ using System.Runtime.CompilerServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Team AppliStation")] [assembly: AssemblyProduct("AppliStation")] -[assembly: AssemblyCopyright("Copyright (c) 2007-2008 Team AppliStation")] +[assembly: AssemblyCopyright("Copyright (c) 2007-2009 Team AppliStation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -23,7 +23,7 @@ using System.Runtime.CompilerServices; // You can specify all values by your own or you can build default build and revision // numbers with the '*' character (the default): -[assembly: AssemblyVersion("1.2.0.*")] +[assembly: AssemblyVersion("1.2.1.*")] // The following attributes specify the key for the sign of your assembly. See the // .NET Framework documentation for more information about signing. diff --git a/na-get-lib/NaGet.Packages/Platform.cs b/na-get-lib/NaGet.Packages/Platform.cs index f26bf30..26e685e 100644 --- a/na-get-lib/NaGet.Packages/Platform.cs +++ b/na-get-lib/NaGet.Packages/Platform.cs @@ -18,7 +18,8 @@ namespace NaGet.Packages WINXP = 151, WIN2003 = 152, VISTA = 160, - WIN2008 = 161, + WIN2008 = 160, + WIN7 = 161, } public class Platform @@ -174,7 +175,7 @@ namespace NaGet.Packages case 0: return PlatformOSType.VISTA; case 1: - return PlatformOSType.WIN2008; + return PlatformOSType.WIN7; } } break;