Skip to content

Commit c2e9aaa

Browse files
committed
Added ReSharper 8.2 support.
1 parent 51f5ea3 commit c2e9aaa

File tree

15 files changed

+331
-10
lines changed

15 files changed

+331
-10
lines changed

nuget/OrderUsings.nuspec

+7-2
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,25 @@
99
<description>Enables configurable fine control over the ordering, grouping, and spacing of C# using directives. Instead of being limited to two groups - System*, and everything else - you can define any number of groups in any order to arrange using directives however makes most sense for your project.</description>
1010
<summary>Control over the ordering, grouping, and spacing of C# using directives.</summary>
1111
<copyright>Copyright &#x00A9; 2014 Ian Griffiths</copyright>
12-
<releaseNotes>&#x2022; 1.1.1 - Fixed alias handling bug
12+
<releaseNotes>&#x2022; 1.2.0 - Added ReSharper 8.2 supprt
13+
&#x2022; 1.1.1 - Fixed alias handling bug
1314
&#x2022; 1.1.0 - Added ReSharper code cleanup support
1415
&#x2022; 1.0.0 - First release (supporting only ReSharper 8.1)</releaseNotes>
1516
<projectUrl>https://github.com/idg10/order-usings</projectUrl>
1617
<licenseUrl>https://github.com/idg10/order-usings/blob/master/LICENSE</licenseUrl>
1718
<iconUrl>http://b.interact-sw.co.uk/images/OrderUsingIcon.png</iconUrl>
1819
<dependencies>
19-
<dependency id="ReSharper" version="[8.1, 8.2)" />
20+
<dependency id="ReSharper" version="[8.1, 8.3)" />
2021
</dependencies>
2122
</metadata>
2223
<files>
2324
<file src="..\src\ReSharper810\bin\Release\OrderUsings.ReSharper810.dll"
2425
target="ReSharper\v8.1\plugins" />
2526
<file src="..\src\OrderUsings.Core\bin\Release\OrderUsings.Core.dll"
2627
target="ReSharper\v8.1\plugins" />
28+
<file src="..\src\ReSharper810\bin\Release\OrderUsings.ReSharper820.dll"
29+
target="ReSharper\v8.2\plugins" />
30+
<file src="..\src\OrderUsings.Core\bin\Release\OrderUsings.Core.dll"
31+
target="ReSharper\v8.2\plugins" />
2732
</files>
2833
</package>

src/OrderUsings.sln

+12
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{00A0C9
2828
.nuget\packages.config = .nuget\packages.config
2929
EndProjectSection
3030
EndProject
31+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReSharper820", "ReSharper820\ReSharper820.csproj", "{0EFF7BD1-E944-4CFD-BBF4-91563372BCAF}"
32+
EndProject
33+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReSharper820.Tests", "ReSharper820.Tests\ReSharper820.Tests.csproj", "{396DEB61-5CC3-48C8-8877-1E344C564E29}"
34+
EndProject
3135
Global
3236
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3337
Debug|Any CPU = Debug|Any CPU
@@ -50,6 +54,14 @@ Global
5054
{638CD37F-59CB-42AE-873D-5E09E9C32EAA}.Debug|Any CPU.Build.0 = Debug|Any CPU
5155
{638CD37F-59CB-42AE-873D-5E09E9C32EAA}.Release|Any CPU.ActiveCfg = Release|Any CPU
5256
{638CD37F-59CB-42AE-873D-5E09E9C32EAA}.Release|Any CPU.Build.0 = Release|Any CPU
57+
{0EFF7BD1-E944-4CFD-BBF4-91563372BCAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
58+
{0EFF7BD1-E944-4CFD-BBF4-91563372BCAF}.Debug|Any CPU.Build.0 = Debug|Any CPU
59+
{0EFF7BD1-E944-4CFD-BBF4-91563372BCAF}.Release|Any CPU.ActiveCfg = Release|Any CPU
60+
{0EFF7BD1-E944-4CFD-BBF4-91563372BCAF}.Release|Any CPU.Build.0 = Release|Any CPU
61+
{396DEB61-5CC3-48C8-8877-1E344C564E29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
62+
{396DEB61-5CC3-48C8-8877-1E344C564E29}.Debug|Any CPU.Build.0 = Debug|Any CPU
63+
{396DEB61-5CC3-48C8-8877-1E344C564E29}.Release|Any CPU.ActiveCfg = Release|Any CPU
64+
{396DEB61-5CC3-48C8-8877-1E344C564E29}.Release|Any CPU.Build.0 = Release|Any CPU
5365
EndGlobalSection
5466
GlobalSection(SolutionProperties) = preSolution
5567
HideSolutionNode = FALSE

src/ReSharper810/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]
1515

16-
[assembly: AssemblyVersion("1.0.0.0")]
17-
[assembly: AssemblyFileVersion("1.0.0.0")]
16+
[assembly: AssemblyVersion("1.2.0.0")]
17+
[assembly: AssemblyFileVersion("1.2.0.0")]
1818

1919
[assembly: ComVisible(false)]
2020

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
using System.Collections.Generic;
2+
using System.Reflection;
3+
using System.Runtime.InteropServices;
4+
5+
using NUnit.Framework;
6+
7+
using JetBrains.Application;
8+
using JetBrains.Threading;
9+
10+
using OrderUsings.Configuration;
11+
using OrderUsings.ReSharper.Settings;
12+
13+
[assembly: AssemblyTitle("OrderUsings.ReSharper810.Tests")]
14+
[assembly: AssemblyDescription("Tests for ReSharper v8.1 Order Usings plug-in")]
15+
[assembly: AssemblyConfiguration("")]
16+
[assembly: AssemblyCompany("Ian Griffiths")]
17+
[assembly: AssemblyProduct("Order Usings")]
18+
[assembly: AssemblyCopyright("Copyright © Ian Griffiths, 2014")]
19+
[assembly: AssemblyTrademark("")]
20+
[assembly: AssemblyCulture("")]
21+
22+
[assembly: AssemblyVersion("1.2.0.0")]
23+
[assembly: AssemblyFileVersion("1.2.0.0")]
24+
25+
[assembly: ComVisible(false)]
26+
27+
/// <summary>
28+
/// Test environment. Must be in the global namespace.
29+
/// </summary>
30+
[SetUpFixture]
31+
// ReSharper disable once CheckNamespace
32+
public class TestEnvironmentAssembly : ReSharperTestEnvironmentAssembly
33+
{
34+
/// <summary>
35+
/// Gets the assemblies to load into test environment.
36+
/// Should include all assemblies which contain components.
37+
/// </summary>
38+
private static IEnumerable<Assembly> GetAssembliesToLoad()
39+
{
40+
// Test assembly
41+
yield return Assembly.GetExecutingAssembly();
42+
43+
yield return typeof(GroupRule).Assembly;
44+
yield return typeof(OrderUsingsSettings).Assembly;
45+
}
46+
47+
public override void SetUp()
48+
{
49+
base.SetUp();
50+
ReentrancyGuard.Current.Execute(
51+
"LoadAssemblies",
52+
() => Shell.Instance.GetComponent<AssemblyManager>().LoadAssemblies(
53+
GetType().Name, GetAssembliesToLoad()));
54+
}
55+
56+
public override void TearDown()
57+
{
58+
ReentrancyGuard.Current.Execute(
59+
"UnloadAssemblies",
60+
() => Shell.Instance.GetComponent<AssemblyManager>().UnloadAssemblies(
61+
GetType().Name, GetAssembliesToLoad()));
62+
base.TearDown();
63+
}
64+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="..\packages\JetBrains.ReSharper.SDK.Tests.8.2.1158\build\JetBrains.ReSharper.SDK.Tests.Props" Condition="Exists('..\packages\JetBrains.ReSharper.SDK.Tests.8.2.1158\build\JetBrains.ReSharper.SDK.Tests.Props')" />
4+
<Import Project="..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Props" Condition="Exists('..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Props')" />
5+
<PropertyGroup>
6+
<ReSharperSdkMode>Tests</ReSharperSdkMode>
7+
</PropertyGroup>
8+
<PropertyGroup>
9+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
10+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
11+
<ProductVersion>8.0.30703</ProductVersion>
12+
<SchemaVersion>2.0</SchemaVersion>
13+
<ProjectGuid>{396DEB61-5CC3-48C8-8877-1E344C564E29}</ProjectGuid>
14+
<OutputType>Library</OutputType>
15+
<AppDesignerFolder>Properties</AppDesignerFolder>
16+
<RootNamespace>ReSharper.Tests</RootNamespace>
17+
<AssemblyName>ReSharper820.Tests</AssemblyName>
18+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
19+
<FileAlignment>512</FileAlignment>
20+
<TargetFrameworkProfile />
21+
</PropertyGroup>
22+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
23+
<DebugSymbols>true</DebugSymbols>
24+
<DebugType>full</DebugType>
25+
<Optimize>false</Optimize>
26+
<OutputPath>bin\Debug\</OutputPath>
27+
<DefineConstants>JET_MODE_ASSERT;DEBUG;TRACE</DefineConstants>
28+
<ErrorReport>prompt</ErrorReport>
29+
<WarningLevel>4</WarningLevel>
30+
</PropertyGroup>
31+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
32+
<DebugType>pdbonly</DebugType>
33+
<Optimize>true</Optimize>
34+
<OutputPath>bin\Release\</OutputPath>
35+
<DefineConstants>TRACE</DefineConstants>
36+
<ErrorReport>prompt</ErrorReport>
37+
<WarningLevel>4</WarningLevel>
38+
</PropertyGroup>
39+
<ItemGroup>
40+
<Reference Include="PresentationCore" />
41+
<Reference Include="System" />
42+
<Reference Include="System.Core" />
43+
<Reference Include="System.Drawing" />
44+
<Reference Include="System.Xml.Linq" />
45+
<Reference Include="System.Data.DataSetExtensions" />
46+
<Reference Include="System.Data" />
47+
<Reference Include="System.Windows.Forms" />
48+
<Reference Include="System.Xml" />
49+
<Reference Include="WindowsBase" />
50+
</ItemGroup>
51+
<ItemGroup>
52+
<Compile Include="..\Resharper810.Tests\CodeCleanup\WhenOrderIsWrong.cs">
53+
<Link>CodeCleanup\WhenOrderIsWrong.cs</Link>
54+
</Compile>
55+
<Compile Include="..\Resharper810.Tests\Highlighting\WhenOrderIsWrong.cs">
56+
<Link>Highlighting\WhenOrderIsWrong.cs</Link>
57+
</Compile>
58+
<Compile Include="..\Resharper810.Tests\Highlighting\WhenSpacingIsWrong.cs">
59+
<Link>Highlighting\WhenSpacingIsWrong.cs</Link>
60+
</Compile>
61+
<Compile Include="Properties\AssemblyInfo.cs" />
62+
</ItemGroup>
63+
<ItemGroup>
64+
<None Include="packages.config" />
65+
<None Include="ReadMe.txt" />
66+
</ItemGroup>
67+
<ItemGroup>
68+
<ProjectReference Include="..\OrderUsings.Core\OrderUsings.Core.csproj">
69+
<Project>{9875da0a-db09-47b2-80b5-80b08e430cef}</Project>
70+
<Name>OrderUsings.Core</Name>
71+
</ProjectReference>
72+
<ProjectReference Include="..\ReSharper820\ReSharper820.csproj">
73+
<Project>{0eff7bd1-e944-4cfd-bbf4-91563372bcaf}</Project>
74+
<Name>ReSharper820</Name>
75+
</ProjectReference>
76+
</ItemGroup>
77+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
78+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
79+
<PropertyGroup>
80+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
81+
</PropertyGroup>
82+
<Error Condition="!Exists('..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Props'))" />
83+
<Error Condition="!Exists('..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Targets'))" />
84+
<Error Condition="!Exists('..\packages\JetBrains.ReSharper.SDK.Tests.8.2.1158\build\JetBrains.ReSharper.SDK.Tests.Props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\JetBrains.ReSharper.SDK.Tests.8.2.1158\build\JetBrains.ReSharper.SDK.Tests.Props'))" />
85+
</Target>
86+
<Import Project="..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Targets" Condition="Exists('..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Targets')" />
87+
</Project>

src/ReSharper820.Tests/ReadMe.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
You have just generated an empty ReSharper plugin test project.
2+
3+
To add additional tests to your project, use the Add|New Item... menu.
4+
5+
To add test data to your project, open or create a \test\data folder inside
6+
the solution folder. Then, in each of the tests you create, be sure to override
7+
the RelativeTestDataPath property to correctly point ReSharper to your tests.
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="JetBrains.ReSharper.SDK" version="8.2.1158" targetFramework="net40" />
4+
<package id="JetBrains.ReSharper.SDK.Tests" version="8.2.1158" targetFramework="net40" />
5+
</packages>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using JetBrains.ActionManagement;
4+
using JetBrains.Application.PluginSupport;
5+
6+
[assembly: AssemblyTitle("ReSharper820")]
7+
[assembly: AssemblyDescription("Rules-based ordering for C# using directives")]
8+
[assembly: AssemblyConfiguration("")]
9+
[assembly: AssemblyCompany("Ian Griffiths")]
10+
[assembly: AssemblyProduct("Order Usings")]
11+
[assembly: AssemblyCopyright("Copyright © Ian Griffiths, 2014")]
12+
[assembly: AssemblyTrademark("")]
13+
[assembly: AssemblyCulture("")]
14+
15+
[assembly: AssemblyVersion("1.2.0.0")]
16+
[assembly: AssemblyFileVersion("1.2.0.0")]
17+
18+
[assembly: ActionsXml("ReSharper820.Actions.xml")]
19+
20+
// The following information is displayed by ReSharper in the Plugins dialog
21+
[assembly: PluginTitle("Order Usings")]
22+
[assembly: PluginDescription("Rules-based ordering for C# using directives")]
23+
[assembly: PluginVendor("Ian Griffiths")]
24+
25+
[assembly: InternalsVisibleTo("ReSharper820.Tests")]

src/ReSharper820/ReSharper820.csproj

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Props" Condition="Exists('..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProductVersion>8.0.30703</ProductVersion>
8+
<SchemaVersion>2.0</SchemaVersion>
9+
<ProjectGuid>{0EFF7BD1-E944-4CFD-BBF4-91563372BCAF}</ProjectGuid>
10+
<OutputType>Library</OutputType>
11+
<AppDesignerFolder>Properties</AppDesignerFolder>
12+
<RootNamespace>OrderUsings.ReSharper</RootNamespace>
13+
<AssemblyName>OrderUsings.ReSharper820</AssemblyName>
14+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
15+
<FileAlignment>512</FileAlignment>
16+
<TargetFrameworkProfile />
17+
</PropertyGroup>
18+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19+
<DebugSymbols>true</DebugSymbols>
20+
<DebugType>full</DebugType>
21+
<Optimize>false</Optimize>
22+
<OutputPath>bin\Debug\</OutputPath>
23+
<DefineConstants>JET_MODE_ASSERT;DEBUG;TRACE</DefineConstants>
24+
<ErrorReport>prompt</ErrorReport>
25+
<WarningLevel>4</WarningLevel>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
36+
<StartAction>Program</StartAction>
37+
<StartProgram>$(VsInstallDir)devenv.exe</StartProgram>
38+
<StartArguments>/ReSharper.Plugin $(AssemblyName).dll /ReSharper.Internal</StartArguments>
39+
<StartWorkingDirectory>$(MSBuildProjectDirectory)\$(OutputPath)</StartWorkingDirectory>
40+
</PropertyGroup>
41+
<ItemGroup>
42+
<Reference Include="PresentationCore" />
43+
<Reference Include="PresentationFramework" />
44+
<Reference Include="System" />
45+
<Reference Include="System.Core" />
46+
<Reference Include="System.Drawing" />
47+
<Reference Include="System.Xaml" />
48+
<Reference Include="System.Xml.Linq" />
49+
<Reference Include="System.Data.DataSetExtensions" />
50+
<Reference Include="System.Data" />
51+
<Reference Include="System.Windows.Forms" />
52+
<Reference Include="System.Xml" />
53+
<Reference Include="WindowsBase" />
54+
</ItemGroup>
55+
<ItemGroup>
56+
<Compile Include="..\ReSharper810\CodeCleanup\OrderAndSpaceCleanupDescriptor.cs">
57+
<Link>CodeCleanup\OrderAndSpaceCleanupDescriptor.cs</Link>
58+
</Compile>
59+
<Compile Include="..\ReSharper810\CodeCleanup\OrderAndSpacingCodeCleanupModule.cs">
60+
<Link>CodeCleanup\OrderAndSpacingCodeCleanupModule.cs</Link>
61+
</Compile>
62+
<Compile Include="..\ReSharper810\CodeModel\ImportReader.cs">
63+
<Link>CodeModel\ImportReader.cs</Link>
64+
</Compile>
65+
<Compile Include="..\ReSharper810\Fixes.cs">
66+
<Link>Fixes.cs</Link>
67+
</Compile>
68+
<Compile Include="..\ReSharper810\Highlightings\BaseHighlighting.cs">
69+
<Link>Highlightings\BaseHighlighting.cs</Link>
70+
</Compile>
71+
<Compile Include="..\ReSharper810\Highlightings\UsingOrderHighlighting.cs">
72+
<Link>Highlightings\UsingOrderHighlighting.cs</Link>
73+
</Compile>
74+
<Compile Include="..\ReSharper810\Highlightings\UsingSpacingHighlighting.cs">
75+
<Link>Highlightings\UsingSpacingHighlighting.cs</Link>
76+
</Compile>
77+
<Compile Include="..\ReSharper810\Inspection\OrderUsingsDaemonStage.cs">
78+
<Link>Inspection\OrderUsingsDaemonStage.cs</Link>
79+
</Compile>
80+
<Compile Include="..\ReSharper810\Inspection\OrderUsingsDaemonStageProcess.cs">
81+
<Link>Inspection\OrderUsingsDaemonStageProcess.cs</Link>
82+
</Compile>
83+
<Compile Include="..\ReSharper810\QuickFixes\UsingOrderAndSpacingQuickFix.cs">
84+
<Link>QuickFixes\UsingOrderAndSpacingQuickFix.cs</Link>
85+
</Compile>
86+
<Compile Include="..\ReSharper810\Settings\OrderUsingsOptionsPage.cs">
87+
<Link>Settings\OrderUsingsOptionsPage.cs</Link>
88+
</Compile>
89+
<Compile Include="..\ReSharper810\Settings\OrderUsingsSettings.cs">
90+
<Link>Settings\OrderUsingsSettings.cs</Link>
91+
</Compile>
92+
<Compile Include="Properties\AssemblyInfo.cs" />
93+
</ItemGroup>
94+
<ItemGroup>
95+
<None Include="packages.config" />
96+
</ItemGroup>
97+
<ItemGroup>
98+
<ProjectReference Include="..\OrderUsings.Core\OrderUsings.Core.csproj">
99+
<Project>{9875da0a-db09-47b2-80b5-80b08e430cef}</Project>
100+
<Name>OrderUsings.Core</Name>
101+
</ProjectReference>
102+
</ItemGroup>
103+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
104+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
105+
<PropertyGroup>
106+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
107+
</PropertyGroup>
108+
<Error Condition="!Exists('..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Props'))" />
109+
<Error Condition="!Exists('..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Targets'))" />
110+
</Target>
111+
<Import Project="..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Targets" Condition="Exists('..\packages\JetBrains.ReSharper.SDK.8.2.1158\build\JetBrains.ReSharper.SDK.Targets')" />
112+
</Project>

src/ReSharper820/packages.config

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="JetBrains.ReSharper.SDK" version="8.2.1158" targetFramework="net40" />
4+
</packages>

src/Resharper810.Tests/CodeCleanup/WhenOrderIsWrong.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Resharper810.Tests.CodeCleanup
1+
namespace Resharper.Tests.CodeCleanup
22
{
33
using NUnit.Framework;
44

src/Resharper810.Tests/Highlighting/WhenOrderIsWrong.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Resharper810.Tests.Highlighting
1+
namespace Resharper.Tests.Highlighting
22
{
33
using System;
44

src/Resharper810.Tests/Highlighting/WhenSpacingIsWrong.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Resharper810.Tests.Highlighting
1+
namespace Resharper.Tests.Highlighting
22
{
33
using System;
44

0 commit comments

Comments
 (0)