blob: 3f276d27ab23567bacba19dcf1964496f02c16d6 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | ff fe 23 00 69 00 6e 00 63 00 6c 00 75 00 64 00 65 00 20 00 22 00 43 00 61 00 72 00 64 00 44 00 | ..#.i.n.c.l.u.d.e...".C.a.r.d.D. |
| 0020 | 65 00 74 00 65 00 63 00 74 00 69 00 6f 00 6e 00 52 00 65 00 73 00 75 00 6c 00 74 00 2e 00 68 00 | e.t.e.c.t.i.o.n.R.e.s.u.l.t...h. |
| 0040 | 22 00 0d 00 0a 00 23 00 69 00 6e 00 63 00 6c 00 75 00 64 00 65 00 20 00 22 00 43 00 61 00 72 00 | ".....#.i.n.c.l.u.d.e...".C.a.r. |
| 0060 | 64 00 44 00 65 00 74 00 65 00 63 00 74 00 69 00 6f 00 6e 00 43 00 6f 00 6e 00 66 00 69 00 67 00 | d.D.e.t.e.c.t.i.o.n.C.o.n.f.i.g. |
| 0080 | 2e 00 68 00 22 00 0d 00 0a 00 23 00 69 00 6e 00 63 00 6c 00 75 00 64 00 65 00 20 00 3c 00 6f 00 | ..h.".....#.i.n.c.l.u.d.e...<.o. |
| 00a0 | 70 00 65 00 6e 00 63 00 76 00 32 00 2f 00 6f 00 70 00 65 00 6e 00 63 00 76 00 2e 00 68 00 70 00 | p.e.n.c.v.2./.o.p.e.n.c.v...h.p. |
| 00c0 | 70 00 3e 00 0d 00 0a 00 0d 00 0a 00 23 00 70 00 72 00 61 00 67 00 6d 00 61 00 20 00 6f 00 6e 00 | p.>.........#.p.r.a.g.m.a...o.n. |
| 00e0 | 63 00 65 00 0d 00 0a 00 0d 00 0a 00 75 00 73 00 69 00 6e 00 67 00 20 00 6e 00 61 00 6d 00 65 00 | c.e.........u.s.i.n.g...n.a.m.e. |
0100using 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.FileSystem")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Tango.FileSystem")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
//In order to begin building localizable applications, set
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
//inside a <PropertyGroup>. For example, if you are using US english
//in your source files, set the <UICulture> to en-US. Then uncomment
//the NeutralResourceLanguage attribute below. Update the "en-US" in
//the line below to match the UICulture setting in the project file.
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
[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)
)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
|