RateMyAppControl 1.0.7

dotnet add package RateMyAppControl --version 1.0.7
                    
NuGet\Install-Package RateMyAppControl -Version 1.0.7
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RateMyAppControl" Version="1.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RateMyAppControl" Version="1.0.7" />
                    
Directory.Packages.props
<PackageReference Include="RateMyAppControl" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RateMyAppControl --version 1.0.7
                    
#r "nuget: RateMyAppControl, 1.0.7"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package RateMyAppControl@1.0.7
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RateMyAppControl&version=1.0.7
                    
Install as a Cake Addin
#tool nuget:?package=RateMyAppControl&version=1.0.7
                    
Install as a Cake Tool

Rate My Application Control is an easy to use app reminder control for windows phone and windows store.

Product Compatible and additional computed target framework versions.
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wp8 is compatible.  wp81 was computed. 
Windows Store netcore451 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.7 2,808 12/2/2013
1.0.6 1,449 12/2/2013
1.0.5 1,475 11/29/2013
1.0.3 1,534 11/27/2013
1.0.2 1,740 11/27/2013
1.0.1 1,728 11/26/2013
1.0.0 1,533 11/26/2013

how to use the Control

Windows Store - Code snippet:

 protected override void OnLaunched(LaunchActivatedEventArgs e)
       {
  .
  .
  .
  .
  .
  .
           // Ensure the current window is active
           Window.Current.Activate();
       
  RateMyApp.WS.Core.RateMyAppControl control = new RateMyApp.WS.Core.RateMyAppControl();
           
  // auto language (english only, more languages to come later)
           control.Start(false,"8fb5ebf0-3ba8-4d68-9f2a-7154d8c0ac6a_70rq6xpyaxwzy",null);

           // debug = true + 'Debug build' =>
           // Review will apear after 10 sec. regardless of previous state
           // Callback: this metod is called everytime the Control changes "review" state.
           // Exposure Pattern: in this sample the Rate control will be shown
           // the first 6 times that app has been used for more than 10 sec.
           // or until the review has been completed.
           control.Start(true, "8fb5ebf0-........-yaxwzy", new RateMyApp.Core.Rate.RateControlLanguagePack
           {
               RateMyAppCancelText = "No",
               RateMyAppFeedbackEmail = "my-app@email.com",
               RateMyAppHeader = "Header",
               RateMyAppText = "text body",
               RateMyAppThridOptionText = "Send feedback by e-mail",
               RateMyAppYesText = "yes"
           }, null, new int[] { 1, 2, 3, 4, 5, 6 });
 }

Windows Phone - Code snippet:

 private void Application_Launching(object sender, LaunchingEventArgs e)
       {
           RateMyApp.WP.Core.RateMyAppControl control = new RateMyApp.WP.Core.RateMyAppControl();

           // debug = true + 'Debug build' =>
           // Review will apear after 10 sec. regardless of previous state
           // Callback: this metod is called everytime the Control changes "review" state.
           // Exposure Pattern: in this sample the Rate control will be shown
           // the first 6 times that app has been used for more than 10 sec.
           // or until the review has been completed.
           control.Start(true, new RateMyApp.Core.Rate.RateControlLanguagePack {
               RateMyAppCancelText="No",
               RateMyAppFeedbackEmail = "not implemented on WP yet",
               RateMyAppHeader="Header",
               RateMyAppText="text body",
               RateMyAppThridOptionText = "not implemented on WP yet",
               RateMyAppYesText="yes"
           },null, new int[]{1,2,3,4,5,6});
       }