From 56f3ef56e353137259197c46b28abff490e209b7 Mon Sep 17 00:00:00 2001 From: Louis Zanella Date: Thu, 5 Dec 2024 09:11:47 -0500 Subject: [PATCH] Get rid of AssemblyInfo.cs & adapt NGitLab.csproj accordingly --- NGitLab/NGitLab.csproj | 14 ++++++++++---- NGitLab/Properties/AssemblyInfo.cs | 18 ------------------ 2 files changed, 10 insertions(+), 22 deletions(-) delete mode 100644 NGitLab/Properties/AssemblyInfo.cs diff --git a/NGitLab/NGitLab.csproj b/NGitLab/NGitLab.csproj index df8a26d4..c2853722 100644 --- a/NGitLab/NGitLab.csproj +++ b/NGitLab/NGitLab.csproj @@ -3,16 +3,22 @@ netstandard2.0 - - - - all runtime; build; native; contentfiles; analyzers; buildtransitive + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + \ No newline at end of file diff --git a/NGitLab/Properties/AssemblyInfo.cs b/NGitLab/Properties/AssemblyInfo.cs deleted file mode 100644 index f6e26dc5..00000000 --- a/NGitLab/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System.ComponentModel; -using System.Runtime.CompilerServices; - -[assembly: InternalsVisibleTo("NGitLab.Mock")] -[assembly: InternalsVisibleTo("NGitLab.Tests")] - -// The following is to support the property 'init' keyword. -// See https://blog.ndepend.com/using-c9-record-and-init-property-in-your-net-framework-4-x-net-standard-and-net-core-projects/ -namespace System.Runtime.CompilerServices; - -/// -/// Reserved to be used by the compiler for tracking metadata. -/// This class should not be used by developers in source code. -/// -[EditorBrowsable(EditorBrowsableState.Never)] -internal static class IsExternalInit -{ -}