Files

47 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
---
source_files:
- DataPRO/Modules/SystemSettings/TestSettings/Properties/AssemblyInfo.cs
generated_at: "2026-04-17T16:15:55.797124+00:00"
model: "zai-org/GLM-5-FP8"
schema_version: 1
sha256: "0669db189bdc2425"
---
# Properties
### Purpose
This module contains assembly-level metadata and configuration attributes for the TestSettings assembly. It defines the assembly's identity, version information, COM visibility settings, and other compile-time attributes using standard .NET assembly attributes.
### Public Interface
This module exposes no public types. It consists solely of assembly-level attributes:
- **`[assembly: AssemblyTitle("TestSettings")]`** - Sets the assembly title.
- **`[assembly: AssemblyDescription("")]`** - Empty description.
- **`[assembly: AssemblyConfiguration("")]`** - Empty configuration.
- **`[assembly: AssemblyCompany("")]`** - Empty company name.
- **`[assembly: AssemblyProduct("TestSettings")]`** - Product name.
- **`[assembly: AssemblyCopyright("Copyright © 2016")]`** - Copyright notice.
- **`[assembly: AssemblyTrademark("")]`** - Empty trademark.
- **`[assembly: AssemblyCulture("")]`** - Empty culture (neutral).
- **`[assembly: ComVisible(false)]`** - Disables COM visibility for all types.
- **`[assembly: Guid("7446722e-490d-4f6a-beaf-907947e576d5")]`** - Unique identifier for the typelib.
- **`[assembly: AssemblyVersion("1.0.0.0")]`** - Assembly version.
- **`[assembly: AssemblyFileVersion("1.0.0.0")]`** - File version.
### Invariants
- The assembly version and file version are both fixed at "1.0.0.0".
- COM visibility is disabled for all types in the assembly.
- The GUID `7446722e-490d-4f6a-beaf-907947e576d5` uniquely identifies this assembly's typelib.
### Dependencies
**Depends on:**
- `System.Reflection`
- `System.Runtime.CompilerServices`
- `System.Runtime.InteropServices`
**Depended on by:**
- The entire TestSettings module depends on this for assembly identity.
### Gotchas
None identified from source alone.
---