Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

54 linhas
2.2 KiB

  1. using System.Reflection;
  2. using System.Runtime.InteropServices;
  3. using System.Windows;
  4. // General Information about an assembly is controlled through the following
  5. // set of attributes. Change these attribute values to modify the information
  6. // associated with an assembly.
  7. [assembly: AssemblyTitle("Example")]
  8. [assembly: AssemblyDescription("")]
  9. [assembly: AssemblyConfiguration("")]
  10. [assembly: AssemblyCompany("")]
  11. [assembly: AssemblyProduct("Example")]
  12. [assembly: AssemblyCopyright("Copyright © 2022")]
  13. [assembly: AssemblyTrademark("")]
  14. [assembly: AssemblyCulture("")]
  15. // Setting ComVisible to false makes the types in this assembly not visible
  16. // to COM components. If you need to access a type in this assembly from
  17. // COM, set the ComVisible attribute to true on that type.
  18. [assembly: ComVisible(false)]
  19. //In order to begin building localizable applications, set
  20. //<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
  21. //inside a <PropertyGroup>. For example, if you are using US english
  22. //in your source files, set the <UICulture> to en-US. Then uncomment
  23. //the NeutralResourceLanguage attribute below. Update the "en-US" in
  24. //the line below to match the UICulture setting in the project file.
  25. //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
  26. [assembly: ThemeInfo(
  27. ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
  28. //(used if a resource is not found in the page,
  29. // or application resource dictionaries)
  30. ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
  31. //(used if a resource is not found in the page,
  32. // app, or any theme specific resource dictionaries)
  33. )]
  34. // Version information for an assembly consists of the following four values:
  35. //
  36. // Major Version
  37. // Minor Version
  38. // Build Number
  39. // Revision
  40. //
  41. // You can specify all the values or you can default the Build and Revision Numbers
  42. // by using the '*' as shown below:
  43. // [assembly: AssemblyVersion("1.0.*")]
  44. [assembly: AssemblyVersion("1.0.0.0")]
  45. [assembly: AssemblyFileVersion("1.0.0.0")]