Skip to content

Commit

Permalink
Added new features / Bug fixed
Browse files Browse the repository at this point in the history
・対象のフレームワークを.NET6に変更。
・プロセス管理機能を追加。
・メール送信ライブラリをMailKitに変更。
・リンク情報取得処理においてパフォーマンスが悪化する問題を解消。
  • Loading branch information
uchi-ta committed Mar 1, 2022
1 parent 7d35749 commit adb98d1
Show file tree
Hide file tree
Showing 2,025 changed files with 7,841 additions and 220,502 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[*]
charset = utf-8-bom
end_of_line = lf
end_of_line = crlf
insert_final_newline = false
indent_size = 4
indent_style = space
Expand Down
15 changes: 0 additions & 15 deletions Implem.CodeDefiner.NetCore/Implem.CodeDefiner.NetCore.csproj

This file was deleted.

13 changes: 0 additions & 13 deletions Implem.CodeDefiner.NetCore/Program.cs

This file was deleted.

6 changes: 5 additions & 1 deletion Implem.CodeDefiner/Implem.CodeDefiner.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2022</Copyright>
<Description>This program does the automatic code creation and merging of existing code based on the definition. Also it will make the configuration change of sql server database.</Description>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<Version>1.3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
57 changes: 45 additions & 12 deletions Implem.DefinitionAccessor/Def.cs

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion Implem.DefinitionAccessor/Implem.DefinitionAccessor.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2022</Copyright>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<Version>1.3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
5 changes: 4 additions & 1 deletion Implem.DisplayAccessor/Implem.DisplayAccessor.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2022</Copyright>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<Version>1.3.0.0</Version>
</PropertyGroup>

</Project>
8 changes: 6 additions & 2 deletions Implem.Factory/Implem.Factory.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2022</Copyright>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<Version>1.3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
5 changes: 4 additions & 1 deletion Implem.Libraries/Implem.Libraries.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2022</Copyright>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<Version>1.3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Implem.Libraries/Utilities/Encryptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public static class Encryptions
{
public static string Sha512Cng(this string self)
{
using (var sha512cng = new SHA512CryptoServiceProvider())
using (var sha512cng = SHA512.Create())
{
return sha512cng.ComputeHash(Encoding.UTF8.GetBytes(self))
.Select(hash => hash.ToString("x2"))
Expand Down
12 changes: 0 additions & 12 deletions Implem.Libraries/Utilities/Enumerables.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,6 @@ public static string JoinParam(this string separator, params string[] list)
return string.Join(separator, list?.Where(o => !o.IsNullOrEmpty()));
}

public static IEnumerable<IEnumerable<T>> Chunk<T>(this IEnumerable<T> self, int size)
{
var _size = size != 0
? size
: self.Count();
while (self.Any())
{
yield return self.Take(_size);
self = self.Skip(_size);
}
}

public static bool AllEqual<T>(this IEnumerable<T> self)
{
if (!self.Any()) return true;
Expand Down
7 changes: 7 additions & 0 deletions Implem.Libraries/Utilities/Strings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,5 +140,12 @@ public static string ChangePrefixNumber(this string self, int number)
}
return result;
}

public static string StringInJson(this string self)
{
if (self.IsNullOrEmpty()) return string.Empty;
var json = self.ToSingleList().ToJson();
return $"{json.Substring(1, json.Length - 2)}";
}
}
}
5 changes: 4 additions & 1 deletion Implem.ParameterAccessor/Implem.ParameterAccessor.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2022</Copyright>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<Version>1.3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
12 changes: 0 additions & 12 deletions Implem.Pleasanter.NetCore/.config/dotnet-tools.json

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit adb98d1

Please sign in to comment.