From d6fe0344538a223303c9295452f0ad73681ca376 Mon Sep 17 00:00:00 2001 From: Pavel Gross Date: Tue, 4 Mar 2025 20:12:42 +0300 Subject: [PATCH] [#37] Client: Add AssemblyInfo files Signed-off-by: Pavel Gross --- src/FrostFS.SDK.Client/AssemblyInfo.cs | 11 ++++++++++ .../FrostFS.SDK.Client.csproj | 16 ++++++++++---- src/FrostFS.SDK.Cryptography/AssemblyInfo.cs | 21 ++++++------------- .../FrostFS.SDK.Cryptography.csproj | 8 +++++++ src/FrostFS.SDK.Protos/AssemblyInfo.cs | 11 ++++++++++ .../FrostFS.SDK.Protos.csproj | 8 +++++++ 6 files changed, 56 insertions(+), 19 deletions(-) create mode 100644 src/FrostFS.SDK.Client/AssemblyInfo.cs create mode 100644 src/FrostFS.SDK.Protos/AssemblyInfo.cs diff --git a/src/FrostFS.SDK.Client/AssemblyInfo.cs b/src/FrostFS.SDK.Client/AssemblyInfo.cs new file mode 100644 index 0000000..9f8605f --- /dev/null +++ b/src/FrostFS.SDK.Client/AssemblyInfo.cs @@ -0,0 +1,11 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: AssemblyCompany("FrostFS.SDK.Client")] +[assembly: AssemblyProduct("FrostFS.SDK.Client")] +[assembly: AssemblyTitle("FrostFS.SDK.Client")] + +[assembly: AssemblyVersion("1.0.1")] +[assembly: AssemblyFileVersion("1.0.1")] + +[assembly: ComVisible(false)] diff --git a/src/FrostFS.SDK.Client/FrostFS.SDK.Client.csproj b/src/FrostFS.SDK.Client/FrostFS.SDK.Client.csproj index 2518ce6..331e827 100644 --- a/src/FrostFS.SDK.Client/FrostFS.SDK.Client.csproj +++ b/src/FrostFS.SDK.Client/FrostFS.SDK.Client.csproj @@ -8,19 +8,27 @@ - true + true - true + true - <_SkipUpgradeNetAnalyzersNuGetWarning>true + <_SkipUpgradeNetAnalyzersNuGetWarning>true - true + true + + + + true + + + + Assemblyinfo.cs diff --git a/src/FrostFS.SDK.Cryptography/AssemblyInfo.cs b/src/FrostFS.SDK.Cryptography/AssemblyInfo.cs index a75808b..7e34e5b 100644 --- a/src/FrostFS.SDK.Cryptography/AssemblyInfo.cs +++ b/src/FrostFS.SDK.Cryptography/AssemblyInfo.cs @@ -1,20 +1,11 @@ -using System.Runtime.CompilerServices; +using System.Reflection; using System.Runtime.InteropServices; -// In SDK-style projects such as this one, several assembly attributes that were historically -// defined in this file are now automatically added during build and populated with -// values defined in project properties. For details of which attributes are included -// and how to customise this process see: https://aka.ms/assembly-info-properties +[assembly: AssemblyCompany("FrostFS.SDK.Cryptography")] +[assembly: AssemblyProduct("FrostFS.SDK.Cryptography")] +[assembly: AssemblyTitle("FrostFS.SDK.Cryptography")] - -// 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: AssemblyVersion("1.0.1")] +[assembly: AssemblyFileVersion("1.0.1")] [assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM. - -[assembly: Guid("08a8487e-39ce-41fb-9c24-13f73ff2bde0")] - -[assembly: InternalsVisibleTo("FrostFS.SDK.Cryptography.Test")] \ No newline at end of file diff --git a/src/FrostFS.SDK.Cryptography/FrostFS.SDK.Cryptography.csproj b/src/FrostFS.SDK.Cryptography/FrostFS.SDK.Cryptography.csproj index 53c9003..484bc1a 100644 --- a/src/FrostFS.SDK.Cryptography/FrostFS.SDK.Cryptography.csproj +++ b/src/FrostFS.SDK.Cryptography/FrostFS.SDK.Cryptography.csproj @@ -18,6 +18,14 @@ true + + true + + + + Assemblyinfo.cs + + diff --git a/src/FrostFS.SDK.Protos/AssemblyInfo.cs b/src/FrostFS.SDK.Protos/AssemblyInfo.cs new file mode 100644 index 0000000..bc2beee --- /dev/null +++ b/src/FrostFS.SDK.Protos/AssemblyInfo.cs @@ -0,0 +1,11 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: AssemblyCompany("FrostFS.SDK.Protos")] +[assembly: AssemblyProduct("FrostFS.SDK.Protos")] +[assembly: AssemblyTitle("FrostFS.SDK.Protos")] + +[assembly: AssemblyVersion("1.0.1")] +[assembly: AssemblyFileVersion("1.0.1")] + +[assembly: ComVisible(false)] diff --git a/src/FrostFS.SDK.Protos/FrostFS.SDK.Protos.csproj b/src/FrostFS.SDK.Protos/FrostFS.SDK.Protos.csproj index 8e7250a..cd6627e 100644 --- a/src/FrostFS.SDK.Protos/FrostFS.SDK.Protos.csproj +++ b/src/FrostFS.SDK.Protos/FrostFS.SDK.Protos.csproj @@ -18,6 +18,14 @@ true + + true + + + + Assemblyinfo.cs + +