From 8265951bd43ad561df15196a70424dea5584660d Mon Sep 17 00:00:00 2001 From: michalcourson Date: Tue, 24 Feb 2026 21:15:31 -0500 Subject: [PATCH] Move assembly metadata to .csproj and clean AssemblyInfo.cs Assembly metadata such as title, product, copyright, and version information was moved from Properties/AssemblyInfo.cs to the ClipTrimDotNet.csproj file. The corresponding attributes and comments were removed from AssemblyInfo.cs, leaving only the trademark, culture, and GUID attributes. This streamlines project configuration and centralizes assembly information in the project file. --- .../ClipTrimDotNet/ClipTrimDotNet.csproj | 5 ++++ .../ClipTrimDotNet/Properties/AssemblyInfo.cs | 23 ------------------- 2 files changed, 5 insertions(+), 23 deletions(-) diff --git a/stream_deck_plugin/ClipTrimDotNet/ClipTrimDotNet.csproj b/stream_deck_plugin/ClipTrimDotNet/ClipTrimDotNet.csproj index d013d9a..602281f 100644 --- a/stream_deck_plugin/ClipTrimDotNet/ClipTrimDotNet.csproj +++ b/stream_deck_plugin/ClipTrimDotNet/ClipTrimDotNet.csproj @@ -7,6 +7,11 @@ enable npm run stop npm run start + ClipTrimDotNet + ClipTrimDotNet + Copyright © 2020 + 1.0.0.0 + 1.0.0.0 bin\Debug\com.michal-courson.cliptrim.sdPlugin\ diff --git a/stream_deck_plugin/ClipTrimDotNet/Properties/AssemblyInfo.cs b/stream_deck_plugin/ClipTrimDotNet/Properties/AssemblyInfo.cs index a5449c8..2c978f5 100644 --- a/stream_deck_plugin/ClipTrimDotNet/Properties/AssemblyInfo.cs +++ b/stream_deck_plugin/ClipTrimDotNet/Properties/AssemblyInfo.cs @@ -1,16 +1,6 @@ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; - -// 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("ClipTrimDotNet")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("ClipTrimDotNet")] -[assembly: AssemblyCopyright("Copyright © 2020")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -21,16 +11,3 @@ using System.Runtime.InteropServices; // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("1bb90885-9d98-46ef-b983-4a4ef3aea890")] - -// 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")]