From 58c49593b1ea479773e4c857db5df6df44844a46 Mon Sep 17 00:00:00 2001 From: Gennady Verdel Date: Sun, 27 Jun 2021 19:52:36 +0300 Subject: [PATCH] chore: merge from develop #14 (#17) --- .../LogoFX.Client.Mvvm.Commanding.Core.nuspec | 8 +++++--- .../contents/LogoFX.Client.Mvvm.Commanding.nuspec | 12 +++++++----- devops/publish/PublishUtil/Program.cs | 2 +- devops/publish/publish-all.bat | 2 +- ...LogoFX.Client.Mvvm.Commanding.Platform.NET.csproj | 4 ++-- ...FX.Client.Mvvm.Commanding.Platform.NETCore.csproj | 4 ++-- ...ient.Mvvm.Commanding.Platform.NETFramework.csproj | 6 +++--- ...LogoFX.Client.Mvvm.Commanding.Platform.UWP.csproj | 6 +++--- .../LogoFX.Client.Mvvm.Commanding.csproj | 2 +- 9 files changed, 25 insertions(+), 21 deletions(-) diff --git a/devops/pack/LogoFX.Client.Mvvm.Commanding.Core/contents/LogoFX.Client.Mvvm.Commanding.Core.nuspec b/devops/pack/LogoFX.Client.Mvvm.Commanding.Core/contents/LogoFX.Client.Mvvm.Commanding.Core.nuspec index b11cd34..7e1320a 100644 --- a/devops/pack/LogoFX.Client.Mvvm.Commanding.Core/contents/LogoFX.Client.Mvvm.Commanding.Core.nuspec +++ b/devops/pack/LogoFX.Client.Mvvm.Commanding.Core/contents/LogoFX.Client.Mvvm.Commanding.Core.nuspec @@ -2,7 +2,7 @@ LogoFX.Client.Mvvm.Commanding.Core - 2.2.0-rc3 + 2.2.0 LogoFX.Client.Mvvm.Commanding.Core Gennady Verdel,Vlad Spivak Gennady Verdel @@ -12,10 +12,12 @@ https://github.com/LogoFX/logofx-assets/blob/master/icons/icon.png?raw=true LogoFX Client Mvvm Commanding containing implementation of ICommand with Fluent API. LogoFX Client Mvvm Commanding containing implementation of ICommand with Fluent API. - Updated dependent packages + Using System.Reactive.Linq 5 - + + framework logofx dotnet + \ No newline at end of file diff --git a/devops/pack/LogoFX.Client.Mvvm.Commanding/contents/LogoFX.Client.Mvvm.Commanding.nuspec b/devops/pack/LogoFX.Client.Mvvm.Commanding/contents/LogoFX.Client.Mvvm.Commanding.nuspec index 23a31b0..a6d52c1 100644 --- a/devops/pack/LogoFX.Client.Mvvm.Commanding/contents/LogoFX.Client.Mvvm.Commanding.nuspec +++ b/devops/pack/LogoFX.Client.Mvvm.Commanding/contents/LogoFX.Client.Mvvm.Commanding.nuspec @@ -2,7 +2,7 @@ LogoFX.Client.Mvvm.Commanding - 2.2.0-rc3 + 2.2.0 LogoFX.Client.Mvvm.Commanding Gennady Verdel,Vlad Spivak Gennady Verdel @@ -12,19 +12,21 @@ https://github.com/LogoFX/logofx-assets/blob/master/icons/icon.png?raw=true LogoFX Client Mvvm Commanding containing implementation of ICommand with Fluent API. LogoFX Client Mvvm Commanding containing implementation of ICommand with Fluent API. - Updated dependent packages + Added support for .NET Core - - - + + + + framework logofx dotnet + \ No newline at end of file diff --git a/devops/publish/PublishUtil/Program.cs b/devops/publish/PublishUtil/Program.cs index 6684d86..8828f0f 100644 --- a/devops/publish/PublishUtil/Program.cs +++ b/devops/publish/PublishUtil/Program.cs @@ -31,7 +31,7 @@ private static void PublishPackage(string packageId) Directory.SetCurrentDirectory(Path.Combine(Directory.GetCurrentDirectory(), "publish")); var copyBat = Path.Combine(Directory.GetCurrentDirectory(), "copy-single.bat"); //TODO: pass version as well - process = Process.Start(copyBat, new [] {packageId, "2.2.0-rc3", "../../../../packages/Tests-All" }); + process = Process.Start(copyBat, new [] {packageId, "2.2.0", "../../../../packages/Tests-All" }); process.WaitForExit(); GoUp(1); } diff --git a/devops/publish/publish-all.bat b/devops/publish/publish-all.bat index 448caa4..a7b20c6 100644 --- a/devops/publish/publish-all.bat +++ b/devops/publish/publish-all.bat @@ -1,4 +1,4 @@ -SET package_version=2.2.0-rc3 +SET package_version=2.2.0 cd ../../src nuget restore cd ../devops diff --git a/src/LogoFX.Client.Mvvm.Commanding.Platform/net/LogoFX.Client.Mvvm.Commanding.Platform.NET.csproj b/src/LogoFX.Client.Mvvm.Commanding.Platform/net/LogoFX.Client.Mvvm.Commanding.Platform.NET.csproj index 44c3f36..5413461 100644 --- a/src/LogoFX.Client.Mvvm.Commanding.Platform/net/LogoFX.Client.Mvvm.Commanding.Platform.NET.csproj +++ b/src/LogoFX.Client.Mvvm.Commanding.Platform/net/LogoFX.Client.Mvvm.Commanding.Platform.NET.csproj @@ -24,8 +24,8 @@ - - + + diff --git a/src/LogoFX.Client.Mvvm.Commanding.Platform/netcore/LogoFX.Client.Mvvm.Commanding.Platform.NETCore.csproj b/src/LogoFX.Client.Mvvm.Commanding.Platform/netcore/LogoFX.Client.Mvvm.Commanding.Platform.NETCore.csproj index 132d979..b53cb51 100644 --- a/src/LogoFX.Client.Mvvm.Commanding.Platform/netcore/LogoFX.Client.Mvvm.Commanding.Platform.NETCore.csproj +++ b/src/LogoFX.Client.Mvvm.Commanding.Platform/netcore/LogoFX.Client.Mvvm.Commanding.Platform.NETCore.csproj @@ -24,8 +24,8 @@ - - + + diff --git a/src/LogoFX.Client.Mvvm.Commanding.Platform/netframework/LogoFX.Client.Mvvm.Commanding.Platform.NETFramework.csproj b/src/LogoFX.Client.Mvvm.Commanding.Platform/netframework/LogoFX.Client.Mvvm.Commanding.Platform.NETFramework.csproj index a0bd704..2d62647 100644 --- a/src/LogoFX.Client.Mvvm.Commanding.Platform/netframework/LogoFX.Client.Mvvm.Commanding.Platform.NETFramework.csproj +++ b/src/LogoFX.Client.Mvvm.Commanding.Platform/netframework/LogoFX.Client.Mvvm.Commanding.Platform.NETFramework.csproj @@ -69,13 +69,13 @@ 1.0.2 - 2.2.0-rc3 + 2.2.0 - 2.2.0-rc3 + 2.2.0 - 2.2.0-rc3 + 2.2.0 2.3.1 diff --git a/src/LogoFX.Client.Mvvm.Commanding.Platform/uwp/LogoFX.Client.Mvvm.Commanding.Platform.UWP.csproj b/src/LogoFX.Client.Mvvm.Commanding.Platform/uwp/LogoFX.Client.Mvvm.Commanding.Platform.UWP.csproj index d257c02..868e815 100644 --- a/src/LogoFX.Client.Mvvm.Commanding.Platform/uwp/LogoFX.Client.Mvvm.Commanding.Platform.UWP.csproj +++ b/src/LogoFX.Client.Mvvm.Commanding.Platform/uwp/LogoFX.Client.Mvvm.Commanding.Platform.UWP.csproj @@ -130,13 +130,13 @@ - 2.2.0-rc3 + 2.2.0 - 2.2.0-rc3 + 2.2.0 - 2.2.0-rc3 + 2.2.0 6.2.12 diff --git a/src/LogoFX.Client.Mvvm.Commanding/LogoFX.Client.Mvvm.Commanding.csproj b/src/LogoFX.Client.Mvvm.Commanding/LogoFX.Client.Mvvm.Commanding.csproj index d122a3a..929122d 100644 --- a/src/LogoFX.Client.Mvvm.Commanding/LogoFX.Client.Mvvm.Commanding.csproj +++ b/src/LogoFX.Client.Mvvm.Commanding/LogoFX.Client.Mvvm.Commanding.csproj @@ -12,7 +12,7 @@ true - + \ No newline at end of file