-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed #2 v1.3.1.1 Add .NETStandard1.x(1.3) to targetframework, remove…
… [Description]Attribute for that. And, adjust csproj structure, WebURL, Readme, etc.
- Loading branch information
Showing
13 changed files
with
226 additions
and
221 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
Source/Hnx8.ReadJEnc.WinForm.Sample/Hnx8.ReadJEnc.WinForm.Sample.sln
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2013 | ||
VisualStudioVersion = 12.0.40629.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hnx8.ReadJEnc.WinForm.Sample", "Hnx8.ReadJEnc.WinForm.Sample.csproj", "{35F2FD23-805A-4D14-8857-8C8B82039944}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{35F2FD23-805A-4D14-8857-8C8B82039944}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{35F2FD23-805A-4D14-8857-8C8B82039944}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{35F2FD23-805A-4D14-8857-8C8B82039944}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{35F2FD23-805A-4D14-8857-8C8B82039944}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,39 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<Version>1.3.1.0</Version> | ||
<FileVersion>1.3.1.0</FileVersion> | ||
<Version>1.3.1.1</Version> | ||
<FileVersion>1.3.1.1</FileVersion> | ||
<Authors>hnx8 (H.Takahashi)</Authors> | ||
<Product>ReadJEnc</Product> | ||
<Title>ReadJEnc - Character code automatic discrimination library</Title> | ||
<Description>ReadJEnc C#(.NET) File Character Code Type Automatic Determination Library</Description> | ||
<Product>ReadJEnc 文字エンコード自動判別ライブラリ</Product> | ||
<Title>ReadJEnc - Character code automatic determination library(文字エンコード自動判別ライブラリ)</Title> | ||
<Description>ReadJEnc C#(.NET) File Character Code Type Automatic Determination Library. | ||
日本語あるいは他言語のテキストファイル(またはbyte配列)の内容を解析し、文字エンコーディングを判定してテキスト内容を取り出すライブラリです。 | ||
</Description> | ||
<Copyright>Copyright (C) 2014-2018 hnx8 (H.Takahashi)</Copyright> | ||
</PropertyGroup> | ||
|
||
<!-- nuspec details --> | ||
<PropertyGroup> | ||
<PackageId>Hnx8.ReadJEnc</PackageId> | ||
<PackageVersion>1.3.1.0</PackageVersion> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<PackageId>ReadJEnc</PackageId> | ||
<PackageVersion>1.3.1.1</PackageVersion> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageTags>textfile encoding ja-encoding autodetect-encoding</PackageTags> | ||
<PackageLicenseUrl>http://hp.vector.co.jp/authors/VA055804/HNXgrep/ReadJEnc_Readme.txt</PackageLicenseUrl> | ||
<PackageLicenseUrl>https://github.com/hnx8/ReadJEnc/blob/master/LICENSE</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/hnx8/ReadJEnc</PackageProjectUrl> | ||
<PackageIconUrl>https://www.nuget.org/Content/gallery/img/default-package-icon.svg</PackageIconUrl> | ||
<PackageReleaseNotes>https://github.com/hnx8/ReadJEnc#readme | ||
English Version -> https://github.com/hnx8/ReadJEnc/blob/master/README.en.md#readme</PackageReleaseNotes> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp2.0;netstandard2.0;net20;net35;net40;net45;net46;net461</TargetFrameworks> | ||
<TargetFrameworks>netcoreapp2.0;netstandard2.0;netstandard1.3;net20;net35;net40;net45;net46;net47;</TargetFrameworks> | ||
<AssemblyName>Hnx8.ReadJEnc</AssemblyName> | ||
<RootNamespace>Hnx8.ReadJEnc</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='Release'"> | ||
<DocumentationFile>bin\Release\netcoreapp2.0\Hnx8.ReadJEnc.xml</DocumentationFile> | ||
<DebugType>none</DebugType> | ||
<DebugSymbols>false</DebugSymbols> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 15 | ||
VisualStudioVersion = 15.0.27428.2037 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hnx8.ReadJEnc", "Hnx8.ReadJEnc.csproj", "{C577E01D-58B3-4A9C-A189-803C225986A8}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{C577E01D-58B3-4A9C-A189-803C225986A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{C577E01D-58B3-4A9C-A189-803C225986A8}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{C577E01D-58B3-4A9C-A189-803C225986A8}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{C577E01D-58B3-4A9C-A189-803C225986A8}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {08D03B45-026A-4D22-AD57-FDB84DFF8108} | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.