Skip to content

Commit

Permalink
Moved ApplicationConstants from Rubberduck.Core to Rubberduck.Resources
Browse files Browse the repository at this point in the history
  • Loading branch information
mansellan committed Jun 17, 2018
1 parent 9570fa9 commit 4428f60
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions Rubberduck.Core/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using System.Diagnostics;
using System.Globalization;
using Rubberduck.Parsing.UIContext;
using Rubberduck.Resources;
using Rubberduck.UI.Command;
using Rubberduck.VBEditor.SafeComWrappers.Abstract;
using Rubberduck.VBEditor.Utility;
Expand Down
1 change: 0 additions & 1 deletion Rubberduck.Core/Rubberduck.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,6 @@
<Compile Include="CodeAnalysis\CodeMetrics\CodeMetricsViewModel.cs" />
<Compile Include="CodeAnalysis\CodeMetrics\ICodeMetricResult.cs" />
<Compile Include="CodeAnalysis\CodeMetrics\ICodeMetricsParseTreeListener.cs" />
<Compile Include="Common\ApplicationConstants.cs" />
<Compile Include="Common\DeclarationIconCache.cs" />
<Compile Include="Common\ExportFormatter.cs" />
<Compile Include="Common\ClipboardWriter.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.IO;

namespace Rubberduck.Common
namespace Rubberduck.Resources
{
public static class ApplicationConstants
{
Expand Down
1 change: 1 addition & 0 deletions Rubberduck.Resources/Rubberduck.Resources.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
</Compile>
<Compile Include="ApplicationConstants.cs" />
<Compile Include="CodeExplorer\CodeExplorerUI.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
Expand Down
6 changes: 3 additions & 3 deletions Rubberduck.VBEditor.VBA/Rubberduck.VBEditor.VBA.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@
<Compile Include="SourceCodeHandler.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Rubberduck.Core\Rubberduck.Core.csproj">
<Project>{a1587eac-7b54-407e-853f-4c7493d0323e}</Project>
<Name>Rubberduck.Core</Name>
<ProjectReference Include="..\Rubberduck.Resources\Rubberduck.Resources.csproj">
<Project>{1b84b387-f7c4-4876-9bdf-c644c365359a}</Project>
<Name>Rubberduck.Resources</Name>
</ProjectReference>
<ProjectReference Include="..\Rubberduck.VBEEditor\Rubberduck.VBEditor.csproj">
<Project>{8ce35eb3-8852-4ba1-84dd-df3f5d2967b0}</Project>
Expand Down
2 changes: 1 addition & 1 deletion Rubberduck.VBEditor.VBA/SourceCodeHandler.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.IO;
using System.Text;
using Rubberduck.Common;
using Rubberduck.Resources;
using Rubberduck.VBEditor.SafeComWrappers;
using Rubberduck.VBEditor.SafeComWrappers.Abstract;

Expand Down

0 comments on commit 4428f60

Please sign in to comment.