Skip to content

Commit

Permalink
Nuget package
Browse files Browse the repository at this point in the history
  • Loading branch information
eiadxp committed May 1, 2019
1 parent 54bdb7d commit b77c578
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 17 deletions.
Binary file modified MvvmTools.WPF/Properties/AssemblyInfo.cs
Binary file not shown.
16 changes: 11 additions & 5 deletions MvvmTools.WPF/package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--*-->
<id>ClinicalOffice.MvvmTools.WPF</id>
<!--*-->
<version>1.2.0</version>
<version>1.3.0</version>
<title>MvvmTools.WPF</title>
<!--*-->
<authors>Clinical Office</authors>
Expand All @@ -15,12 +15,18 @@
</iconUrl>-->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<!--*-->
<description>A library to enable direct binding of events in your views and methods in the view models, also provide easy way of creating commands and commands collection.</description>
<description>A library to enable direct binding of events in your views and methods in the view models, provide easy way of creating commands and commands collection, and also create data preview of your view models at design time.</description>
<!--*-->
<releaseNotes>
-Bug fix: WPF buttons does not catch command CanExecuteChanged.

-Added: changed event binding behaviour when using element name (you don't have to add DataContext to access underlaying ViewModel) PLEASE READ WIKI FOR THIS.
-Fixed: Events sometimes fail to bind to commands.

-Added: Design time check for the event binding text.

-Added: Design time data preview!!

-Added: Simple logging functionality.

-Changed: Internal design to simplify implementing features through platforms.
</releaseNotes>
<copyright>Copyright © 2019</copyright>
<tags> MVVM Tools XAML WPF Xamarin Forms XamarinForms XForms Command Commands Collection CommandCollection CommandsCollection CrossPlatform Caliburn Catel MvvmCross MvvmLight Mvvm-Light EventsBinding Events</tags>
Expand Down
14 changes: 9 additions & 5 deletions MvvmTools.XForms/MvvmTools.XForms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,22 @@
<PackageId>ClinicalOffice.MvvmTools.XForms</PackageId>
<Authors>ClinicalOffice</Authors>
<Company>Clinical Office</Company>
<Description>A library to enable direct binding of events in your views and methods in the view models, also provide easy way of creating commands and commands collection.</Description>
<Description>A library to enable direct binding of events in your views and methods in the view models, provide easy way of creating commands and commands collection, and also create data preview of your view models at design time.</Description>
<Copyright>Clinical Office @2019</Copyright>
<PackageLicenseUrl>https://github.com/eiadxp/MvvmTools/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/eiadxp/MvvmTools</PackageProjectUrl>
<PackageTags>MVVM Tools XAML WPF Xamarin Forms XamarinForms XForms Command Commands Collection CommandCollection CommandsCollection CrossPlatform Caliburn Catel MvvmCross MvvmLight Mvvm-Light EventsBinding Events</PackageTags>
<PackageReleaseNotes>-Bug fix: WPF buttons does not catch command CanExecuteChanged.
-Added: changed event binding behaviour when using element name (you don't have to add DataContext to access underlaying ViewModel) PLEASE READ WIKI FOR THIS.</PackageReleaseNotes>
<PackageReleaseNotes>-Fixed: Events sometimes fail to bind to commands.
-Added: Design time check for the event binding text.
-Added: Design time data preview!!
-Added: Simple logging functionality.
-Changed: Internal design to simplify implementing features through platforms.</PackageReleaseNotes>
<Product>MvvmTools.XForms</Product>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Version>1.2.0</Version>
<Version>1.3.0</Version>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
17 changes: 10 additions & 7 deletions MvvmTools/MvvmTools.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Authors>Clinical Office</Authors>
<Company>Clinical Office</Company>
<Description>A library to enable direct binding of events in your views and methods in the view models, also provide easy way of creating commands and commands collection.</Description>
<Description>A library to enable direct binding of events in your views and methods in the view models, provide easy way of creating commands and commands collection, and also create data preview of your view models at design time.</Description>
<Copyright>Clinical Office @2019</Copyright>
<PackageTags>MVVM Tools XAML WPF Xamarin Forms XamarinForms XForms Command Commands Collection CommandCollection CommandsCollection CrossPlatform Caliburn Catel MvvmCross MvvmLight Mvvm-Light EventsBinding Events</PackageTags>
<PackageReleaseNotes>-Bug fix: WPF buttons does not catch command CanExecuteChanged.
-Added: changed event binding behaviour when using element name (you don't have to add DataContext to access underlaying ViewModel) PLEASE READ WIKI FOR THIS.</PackageReleaseNotes>
<PackageReleaseNotes>-Fixed: Events sometimes fail to bind to commands.
-Added: Design time check for the event binding text.
-Added: Design time data preview!!
-Added: Simple logging functionality.
-Changed: Internal design to simplify implementing features through platforms.</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/eiadxp/MvvmTools</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/eiadxp/MvvmTools/blob/master/LICENSE</PackageLicenseUrl>
<PackageId>ClinicalOffice.MvvmTools</PackageId>
<Version>1.2.0</Version>
<Version>1.3.0</Version>
<Product>MvvmTools</Product>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<FileVersion>1.2.0.0</FileVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
</PropertyGroup>

</Project>

0 comments on commit b77c578

Please sign in to comment.