mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
28 lines
865 B
C#
28 lines
865 B
C#
using System.Reflection;
|
|
using System.Resources;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Versioning;
|
|
using System.Windows;
|
|
|
|
[assembly: AssemblyTitle("Feed Center")]
|
|
[assembly: AssemblyDescription("")]
|
|
[assembly: AssemblyCompany("Chris Kaczor")]
|
|
[assembly: AssemblyProduct("Feed Center")]
|
|
[assembly: AssemblyCopyright("Copyright © Chris Kaczor 2023")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
[assembly: SupportedOSPlatform("windows")]
|
|
|
|
#if DEBUG
|
|
[assembly: AssemblyConfiguration("Debug build")]
|
|
#else
|
|
[assembly: AssemblyConfiguration("Release build")]
|
|
#endif
|
|
|
|
[assembly: ComVisible(false)]
|
|
[assembly: NeutralResourcesLanguage("en-US")]
|
|
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
|
|
|
|
[assembly: AssemblyVersion("1.1.0.0")]
|
|
[assembly: AssemblyFileVersion("1.1.0.0")] |