OSDN Git Service

ターゲットフレームワークを .NET Framework 4.7.2 に変更
authorKimura Youichi <kim.upsilon@bucyou.net>
Sat, 9 Jun 2018 01:40:41 +0000 (10:40 +0900)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 9 Jun 2018 01:40:41 +0000 (10:40 +0900)
.travis.yml
OpenTween.Tests/OpenTween.Tests.csproj
OpenTween/OpenTween.csproj
OpenTween/Resources/ChangeLog.txt
appveyor.yml

index 929ab86..8d6ce65 100644 (file)
@@ -14,4 +14,4 @@ before_script:
 script:
   - nuget restore -PackagesDirectory packages
   - msbuild /p:Configuration=Debug /verbosity:quiet
-  - mono ./packages/xunit.runner.console/2.3.1/tools/net452/xunit.console.exe ./OpenTween.Tests/bin/Debug/net452/OpenTween.Tests.dll -noappdomain -parallel none
+  - mono ./packages/xunit.runner.console/2.3.1/tools/net452/xunit.console.exe ./OpenTween.Tests/bin/Debug/net472/OpenTween.Tests.dll -noappdomain -parallel none
index 34b0f6f..b974a86 100644 (file)
@@ -2,7 +2,7 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <RootNamespace>OpenTween</RootNamespace>
-    <TargetFramework>net452</TargetFramework>
+    <TargetFramework>net472</TargetFramework>
     <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
   </PropertyGroup>
   <ItemGroup>
index 1058adf..07e0603 100644 (file)
@@ -4,16 +4,12 @@
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
-    <ProductVersion>8.0.30703</ProductVersion>
-    <SchemaVersion>2.0</SchemaVersion>
     <ProjectGuid>{3D8995C7-BDF3-4273-9F9D-DDD902F6A101}</ProjectGuid>
     <OutputType>WinExe</OutputType>
-    <AppDesignerFolder>Properties</AppDesignerFolder>
     <RootNamespace>OpenTween</RootNamespace>
     <AssemblyName>OpenTween</AssemblyName>
-    <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
+    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>
-    <TargetFrameworkProfile />
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     <DebugSymbols>true</DebugSymbols>
index 0b52683..4f2161a 100644 (file)
@@ -1,5 +1,15 @@
 更新履歴
 
+==== Ver 2.0.0-dev(xxxx/xx/xx)
+ * このバージョン以降のOpenTweenは .NET Framework 4.7.2 以上が必須になります
+  - .NET Framework 4.7.2 のインストーラーは https://go.microsoft.com/fwlink/?LinkId=863262 から入手できます
+  - Windows 10 April 2018 Update には標準で .NET Framework 4.7.2 が含まれているため追加のインストールは不要です
+ * Windows Vista ではこのバージョン以降のOpenTweenを動作させることはできません
+
+ * CHG: .NET Frameworkのバージョンが 4.5.1 から 4.7.2 に変更されました
+ * CHG: OpenTweenのバージョン番号の規則が変更されました
+  - 新しいバージョン規則については https://osdn.net/projects/opentween/wiki/Versioning を参照してください
+
 ==== Ver 1.4.2-dev(xxxx/xx/xx)
  * NEW: 画像を添付したDMの送信に対応しました
  * NEW: システムのタイムゾーンの変更を検知して、ツイートの投稿日時などの表示を新しいタイムゾーンに同期します
index 3c61b99..4237440 100644 (file)
@@ -19,7 +19,7 @@ before_build:
   - choco install opencover.portable
 
 test_script:
-  - OpenCover.Console.exe -register:user -target:"%xunit20%\xunit.console.x86.exe" -targetargs:".\OpenTween.Tests\bin\Debug\net452\OpenTween.Tests.dll -noshadow -appveyor" -filter:"+[OpenTween*]* -[OpenTween.Tests]*" -excludebyfile:"*.Designer.cs" -skipautoprops -hideskipped:All -returntargetcode -output:coverage.xml
+  - OpenCover.Console.exe -register:user -target:"%xunit20%\xunit.console.x86.exe" -targetargs:".\OpenTween.Tests\bin\Debug\net472\OpenTween.Tests.dll -noshadow -appveyor" -filter:"+[OpenTween*]* -[OpenTween.Tests]*" -excludebyfile:"*.Designer.cs" -skipautoprops -hideskipped:All -returntargetcode -output:coverage.xml
 
 after_test:
   - npm install codecov --save