Skip to content

Commit 062dcba

Browse files
committed
Update tech-debt-debris with PRs from blessed
2 parents 7a05cc4 + 8ac23e9 commit 062dcba

File tree

792 files changed

+1042
-532
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

792 files changed

+1042
-532
lines changed

Installer Build Script.iss

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
#define BuildDir SourcePath + "RetailCoder.VBE\bin\Release"
1+
#define BuildDir SourcePath + "Rubberduck.Main\bin\Release"
22
#define AppName "Rubberduck"
33
#define AddinDLL "Rubberduck.dll"
4-
#define InspectionsDLL "Rubberduck.Inspections.dll"
5-
#define AppVersion GetFileVersion(SourcePath + "RetailCoder.VBE\bin\Release\Rubberduck.dll")
4+
#define AppVersion GetFileVersion(SourcePath + "Rubberduck.Main\bin\Release\Rubberduck.dll")
65
#define AppPublisher "Rubberduck"
76
#define AppURL "http://rubberduckvba.com"
87
#define License SourcePath + "\License.rtf"
@@ -42,7 +41,6 @@ Source: "{#BuildDir}\lib\win32\x64\*"; DestDir: "{app}"; Flags: ignoreversion; E
4241
Source: "{#BuildDir}\lib\win32\x86\*"; DestDir: "{app}"; Flags: ignoreversion; Excludes: "{#AddinDLL}"; Check: Is32BitOfficeInstalled
4342

4443
Source: "{#BuildDir}\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs; Excludes: "{#AddinDLL},\NativeBinaries"
45-
Source: "{#BuildDir}\{#InspectionsDLL}"; DestDir: "{app}"; Flags: ignoreversion
4644
Source: "{#BuildDir}\{#AddinDLL}"; DestDir: "{app}"; Flags: ignoreversion; AfterInstall: RegisterAddin
4745

4846
[Run]

RetailCoder.VBE/Rubberduck.csproj.DotSettings

Lines changed: 0 additions & 4 deletions
This file was deleted.

RetailCoder.VBE/UnitTesting/FakesProviderFactory.cs

Lines changed: 0 additions & 15 deletions
This file was deleted.

RetailCoder.VBE/API/VBA/ParserState.cs renamed to Rubberduck.API/API/VBA/ParserState.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@
88
using Rubberduck.Parsing.PreProcessing;
99
using Rubberduck.Parsing.Symbols.DeclarationLoaders;
1010
using Rubberduck.Parsing.VBA;
11-
using Rubberduck.UI.Command.MenuItems;
1211
using Rubberduck.Parsing.Symbols;
1312
using Rubberduck.Parsing.UIContext;
1413
using Rubberduck.VBEditor.ComManagement;
15-
using Rubberduck.VBEditor.Events;
1614
using Rubberduck.VBEditor.SafeComWrappers.VBA;
1715

1816
namespace Rubberduck.API.VBA
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("Rubberduck.API")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("Rubberduck.API")]
13+
[assembly: AssemblyCopyright("Copyright © 2018")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("ac1b4a57-364a-4f90-a0cd-6ee818349ce5")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("2.1.*")]

Rubberduck.API/Rubberduck.API.csproj

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{AC1B4A57-364A-4F90-A0CD-6EE818349CE5}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>Rubberduck.API</RootNamespace>
11+
<AssemblyName>Rubberduck.API</AssemblyName>
12+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release\</OutputPath>
28+
<DefineConstants>TRACE</DefineConstants>
29+
<ErrorReport>prompt</ErrorReport>
30+
<WarningLevel>4</WarningLevel>
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<Reference Include="Microsoft.VB6.Interop.VBIDE">
34+
<HintPath>..\libs\Microsoft.VB6.Interop.VBIDE.dll</HintPath>
35+
<EmbedInteropTypes>False</EmbedInteropTypes>
36+
</Reference>
37+
<Reference Include="Microsoft.Vbe.Interop, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
38+
<SpecificVersion>False</SpecificVersion>
39+
<EmbedInteropTypes>False</EmbedInteropTypes>
40+
<HintPath>..\libs\Microsoft.Vbe.Interop.dll</HintPath>
41+
</Reference>
42+
<Reference Include="Microsoft.Vbe.Interop.Forms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
43+
<SpecificVersion>False</SpecificVersion>
44+
<EmbedInteropTypes>False</EmbedInteropTypes>
45+
<HintPath>..\libs\Microsoft.Vbe.Interop.Forms.dll</HintPath>
46+
</Reference>
47+
<Reference Include="System" />
48+
<Reference Include="System.Core" />
49+
<Reference Include="Microsoft.CSharp" />
50+
</ItemGroup>
51+
<ItemGroup>
52+
<Compile Include="API\VBA\Accessibility.cs" />
53+
<Compile Include="API\VBA\Declaration.cs" />
54+
<Compile Include="API\VBA\DeclarationType.cs" />
55+
<Compile Include="API\VBA\IdentifierReference.cs" />
56+
<Compile Include="API\VBA\ParserState.cs" />
57+
<Compile Include="Properties\AssemblyInfo.cs" />
58+
</ItemGroup>
59+
<ItemGroup>
60+
<ProjectReference Include="..\Rubberduck.Core\Rubberduck.Core.csproj">
61+
<Project>{a1587eac-7b54-407e-853f-4c7493d0323e}</Project>
62+
<Name>Rubberduck.Core</Name>
63+
</ProjectReference>
64+
<ProjectReference Include="..\Rubberduck.Parsing\Rubberduck.Parsing.csproj">
65+
<Project>{a4a618e1-cbca-435f-9c6c-5181e030adfc}</Project>
66+
<Name>Rubberduck.Parsing</Name>
67+
</ProjectReference>
68+
<ProjectReference Include="..\Rubberduck.VBEEditor\Rubberduck.VBEditor.csproj">
69+
<Project>{8ce35eb3-8852-4ba1-84dd-df3f5d2967b0}</Project>
70+
<Name>Rubberduck.VBEditor</Name>
71+
</ProjectReference>
72+
</ItemGroup>
73+
<ItemGroup>
74+
<Folder Include="API\Plugin\" />
75+
</ItemGroup>
76+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
77+
</Project>

0 commit comments

Comments
 (0)