aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Properties/AssemblyInfo.cs
blob: 52774bee8bb514f174d76930f87125b4e2b81f2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Tango Module")]
[assembly: AssemblyVersion("2.0.1.1407")]

[assembly: ThemeInfo(
    ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
                                     //(used if a resource is not found in the page,
                                     // or application resource dictionaries)
    ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
                                              //(used if a resource is not found in the page,
                                              // app, or any theme specific resource dictionaries)
)]
n class="w"> GuideBase { public override string Name => "Loading an Ink Cartridge"; public override String Image => "../Images/Guides/Loading-an-Ink-Cartridge.gif"; private BitmapSource _icon; public override BitmapSource Icon { get { if (_icon == null) { _icon = ResourceHelper.GetImageFromResources("Images/Guides/loading-an-ink-cartridge.png"); } return _icon; } } private List<GuideStep> _steps; public override List<GuideStep> Steps { get { if (_steps == null) { _steps = GetStepsFromResource("LoadInkCartridge"); } return _steps; } } } }