-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Hi
I am trying to find a working example of an extension that is based on the new version of the SDK.. The one that you have is based on version 1.9.59-alpha and so is outdated.
For example, in the newest SDK version there are no namespaces:
using Client.RaidApp;
using Client.ViewModel.DTO;Therefore there are no classes such as RaidApplication or the method Application.GetStaticFields just to name a few examples..
Another example
In the extension that is available on your website (called NagMeNot I believe) the author is also using the namespaces:
using Client.ViewModel.Contextes.BankContextes.BankOffersContexts.ComboOffers.Overlays;
using Client.ViewModel.Contextes.BankContextes.BankOffersContexts.CustomOffer.Overlays;
using Client.ViewModel.Contextes.BankContextes.PromoOffersOverlaysContext.PromoOfferPopupOverlay;
using Client.ViewModel.Contextes.Base;
using Client.ViewModel.DTO;
using Client.MVVM.Base.ViewModel.Contexts;
using Client.MVVM.Base.ViewModel.Properties;
using Client.ViewModel.Contextes;
using Client.ViewModel.Contextes.Generic.MessageBox;
using Client.ViewModel.Contextes.HeroesDevelopmentDialog;
using Client.ViewModel.Contextes.HeroesDevelopmentDialog.Items;
and relative classes: CustomOfferOverlayContext, ComboOfferOverlayContext, BankPromoOfferPopupOverlayContext, OverlayContext, ViewKey, MessageBoxButtonContext, HeroesDevelopmentDialogContext, ContextList, ViewMeta none of which are available anymore..
I would really appreciate if you could add to the sample extension the functionality to show how the views/windows and contexts could be accessed in the latest version of the SDK.. (as NagMeNot done previously)
current versions of assemblies that I have installed are mostly based on 2.8.4-alpha version of the SDK.
<PackageReference Include="Raid.Client" Version="2.8.4-alpha" />
<PackageReference Include="Raid.Common" Version="2.8.4-alpha" />
<PackageReference Include="Raid.Model" Version="2.8.4-alpha" />
<PackageReference Include="Raid.Toolkit.Community" Version="2.0.14-alpha-gc6c12bcbf0" />
<PackageReference Include="Raid.Toolkit.DataModel" Version="2.8.4-alpha" />
<PackageReference Include="Raid.Toolkit.Extensibility" Version="2.8.4-alpha" />
<PackageReference Include="Raid.Toolkit.Extensibility.Host" Version="2.8.4-alpha" />
<PackageReference Include="Raid.Toolkit.Extensibility.Tasks" Version="2.8.4-alpha">
<PrivateAssets>none</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Raid.Toolkit.Injection" Version="2.0.0-alpha" />
Thank you.