From c8244678454b24b7dee81af05a8cdad8e694e974 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 25 May 2023 19:29:31 +0100 Subject: [PATCH] refactor: remove Assembly.cs, define attributes in csproj --- VpSharp.Commands/Assembly.cs | 1 - VpSharp.Commands/VpSharp.Commands.csproj | 6 ++++++ VpSharp/VpSharp.csproj | 13 +++++++++++++ VpSharp/src/Assembly.cs | 6 ------ 4 files changed, 19 insertions(+), 7 deletions(-) delete mode 100644 VpSharp.Commands/Assembly.cs delete mode 100644 VpSharp/src/Assembly.cs diff --git a/VpSharp.Commands/Assembly.cs b/VpSharp.Commands/Assembly.cs deleted file mode 100644 index f547610..0000000 --- a/VpSharp.Commands/Assembly.cs +++ /dev/null @@ -1 +0,0 @@ -[assembly: CLSCompliant(true)] diff --git a/VpSharp.Commands/VpSharp.Commands.csproj b/VpSharp.Commands/VpSharp.Commands.csproj index c6d05bc..5015151 100644 --- a/VpSharp.Commands/VpSharp.Commands.csproj +++ b/VpSharp.Commands/VpSharp.Commands.csproj @@ -40,6 +40,12 @@ $(VersionPrefix) + + + <_Parameter1>true + + + True diff --git a/VpSharp/VpSharp.csproj b/VpSharp/VpSharp.csproj index 935b680..9f3e932 100644 --- a/VpSharp/VpSharp.csproj +++ b/VpSharp/VpSharp.csproj @@ -41,6 +41,19 @@ $(VersionPrefix) + + + <_Parameter1>true + + + + + + + + + + True diff --git a/VpSharp/src/Assembly.cs b/VpSharp/src/Assembly.cs deleted file mode 100644 index 09e3f50..0000000 --- a/VpSharp/src/Assembly.cs +++ /dev/null @@ -1,6 +0,0 @@ -using System.Runtime.CompilerServices; - -[assembly: CLSCompliant(true)] -[assembly: InternalsVisibleTo("VpSharp.Commands")] -[assembly: InternalsVisibleTo("VpSharp.IntegrationTests")] -[assembly: InternalsVisibleTo("VpSharp.Tests")]