From d0325ef26472be4e988d4b854a097762335e0979 Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Sun, 9 Sep 2018 18:12:10 -0700 Subject: [PATCH] Remove `CodeAnnotations` - #8416 - turns out this required little on top of dougbu/remove.custom.tool --- src/GetDocumentInsider/CodeAnnotations.cs | 23 ------------------- .../dotnet-getdocument.csproj | 1 - 2 files changed, 24 deletions(-) delete mode 100644 src/GetDocumentInsider/CodeAnnotations.cs diff --git a/src/GetDocumentInsider/CodeAnnotations.cs b/src/GetDocumentInsider/CodeAnnotations.cs deleted file mode 100644 index 7a179f24d3..0000000000 --- a/src/GetDocumentInsider/CodeAnnotations.cs +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System; - -namespace JetBrains.Annotations -{ - [AttributeUsage( - AttributeTargets.Method | AttributeTargets.Parameter | - AttributeTargets.Property | AttributeTargets.Delegate | - AttributeTargets.Field)] - internal sealed class NotNullAttribute : Attribute - { - } - - [AttributeUsage( - AttributeTargets.Method | AttributeTargets.Parameter | - AttributeTargets.Property | AttributeTargets.Delegate | - AttributeTargets.Field)] - internal sealed class CanBeNullAttribute : Attribute - { - } -} diff --git a/src/dotnet-getdocument/dotnet-getdocument.csproj b/src/dotnet-getdocument/dotnet-getdocument.csproj index 48569113b1..a5f550c9e8 100644 --- a/src/dotnet-getdocument/dotnet-getdocument.csproj +++ b/src/dotnet-getdocument/dotnet-getdocument.csproj @@ -24,7 +24,6 @@ -