Skip to content

Commit 054ec38

Browse files
committed
Removed internal copy of JetBrains annotation for Resharper
1 parent 9441cf1 commit 054ec38

File tree

6 files changed

+9
-629
lines changed

6 files changed

+9
-629
lines changed

DevTrends.MvcDonutCaching/HtmlHelperExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DevTrends.MvcDonutCaching.Annotations;
1+
using JetBrains.Annotations;
22
using System.Web.Mvc;
33
using System.Web.Mvc.Html;
44
using System.Web.Routing;

DevTrends.MvcDonutCaching/KeyGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DevTrends.MvcDonutCaching.Annotations;
1+
using JetBrains.Annotations;
22
using System;
33
using System.Collections.Generic;
44
using System.Linq;

DevTrends.MvcDonutCaching/MvcDonutCaching.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
5252
</PropertyGroup>
5353
<ItemGroup>
54+
<Reference Include="JetBrains.Annotations, Version=10.0.0.0, Culture=neutral, PublicKeyToken=1010a0d8d6380325, processorArchitecture=MSIL">
55+
<HintPath>..\packages\JetBrains.Annotations.10.0.0\lib\net20\JetBrains.Annotations.dll</HintPath>
56+
<Private>True</Private>
57+
</Reference>
5458
<Reference Include="System" />
5559
<Reference Include="System.configuration" />
5660
<Reference Include="System.Core" />
@@ -98,7 +102,6 @@
98102
<Compile Include="OutputCache.cs" />
99103
<Compile Include="OutputCacheManager.cs" />
100104
<Compile Include="OutputCacheOptions.cs" />
101-
<Compile Include="Properties\Annotations.cs" />
102105
<Compile Include="Properties\AssemblyInfo.cs" />
103106
</ItemGroup>
104107
<ItemGroup>

DevTrends.MvcDonutCaching/OutputCacheManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using System;
1+
using JetBrains.Annotations;
2+
using System;
23
using System.Collections.Generic;
34
using System.Linq;
45
using System.Web.Caching;
56
using System.Web.Routing;
6-
using DevTrends.MvcDonutCaching.Annotations;
77

88
namespace DevTrends.MvcDonutCaching
99
{

0 commit comments

Comments
 (0)