diff --git a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj index 5a3d1ba..51aa673 100644 --- a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj +++ b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj @@ -1,12 +1,9 @@  + Exe netcoreapp3.0 - 2.15 - Tyrrrz - Copyright (c) Alexey Golub - enable ..\favicon.ico diff --git a/DiscordChatExporter.Core.Markdown/DiscordChatExporter.Core.Markdown.csproj b/DiscordChatExporter.Core.Markdown/DiscordChatExporter.Core.Markdown.csproj index 70a6a23..6e070c6 100644 --- a/DiscordChatExporter.Core.Markdown/DiscordChatExporter.Core.Markdown.csproj +++ b/DiscordChatExporter.Core.Markdown/DiscordChatExporter.Core.Markdown.csproj @@ -1,8 +1,8 @@  + netcoreapp3.0 - enable diff --git a/DiscordChatExporter.Core.Models/DiscordChatExporter.Core.Models.csproj b/DiscordChatExporter.Core.Models/DiscordChatExporter.Core.Models.csproj index 70a6a23..6e070c6 100644 --- a/DiscordChatExporter.Core.Models/DiscordChatExporter.Core.Models.csproj +++ b/DiscordChatExporter.Core.Models/DiscordChatExporter.Core.Models.csproj @@ -1,8 +1,8 @@  + netcoreapp3.0 - enable diff --git a/DiscordChatExporter.Core.Rendering/DiscordChatExporter.Core.Rendering.csproj b/DiscordChatExporter.Core.Rendering/DiscordChatExporter.Core.Rendering.csproj index 3c74320..e1dc33d 100644 --- a/DiscordChatExporter.Core.Rendering/DiscordChatExporter.Core.Rendering.csproj +++ b/DiscordChatExporter.Core.Rendering/DiscordChatExporter.Core.Rendering.csproj @@ -1,8 +1,8 @@  + netcoreapp3.0 - enable diff --git a/DiscordChatExporter.Core.Services/DiscordChatExporter.Core.Services.csproj b/DiscordChatExporter.Core.Services/DiscordChatExporter.Core.Services.csproj index 4b7ef06..7b9fc03 100644 --- a/DiscordChatExporter.Core.Services/DiscordChatExporter.Core.Services.csproj +++ b/DiscordChatExporter.Core.Services/DiscordChatExporter.Core.Services.csproj @@ -1,8 +1,8 @@  + netcoreapp3.0 - enable diff --git a/DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj b/DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj index 51f0447..3717383 100644 --- a/DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj +++ b/DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj @@ -1,13 +1,10 @@  + WinExe netcoreapp3.0 DiscordChatExporter - 2.15 - Tyrrrz - Copyright (c) Alexey Golub - enable true ../favicon.ico diff --git a/DiscordChatExporter.props b/DiscordChatExporter.props new file mode 100644 index 0000000..8031f63 --- /dev/null +++ b/DiscordChatExporter.props @@ -0,0 +1,11 @@ + + + + 2.15 + Tyrrrz + Copyright (c) Alexey Golub + latest + enable + + + \ No newline at end of file diff --git a/UpdateVersion.ps1 b/UpdateVersion.ps1 deleted file mode 100644 index e1f6e28..0000000 --- a/UpdateVersion.ps1 +++ /dev/null @@ -1,12 +0,0 @@ -param([string] $newVersion) - -function Replace-TextInFile { - param([string] $filePath, [string] $pattern, [string] $replacement) - - $content = [IO.File]::ReadAllText($filePath) - $content = [Text.RegularExpressions.Regex]::Replace($content, $pattern, $replacement) - [IO.File]::WriteAllText($filePath, $content, [Text.Encoding]::UTF8) -} - -Replace-TextInFile "$PSScriptRoot\DiscordChatExporter.Cli\DiscordChatExporter.Cli.csproj" '(?<=)(.*?)(?=)' $newVersion -Replace-TextInFile "$PSScriptRoot\DiscordChatExporter.Gui\DiscordChatExporter.Gui.csproj" '(?<=)(.*?)(?=)' $newVersion \ No newline at end of file