Skip to content

Commit

Permalink
Merge pull request #4383 from Vogel612/csproj-format-update
Browse files Browse the repository at this point in the history
Csproj format update, fixes #3944
  • Loading branch information
retailcoder committed Oct 18, 2018
2 parents de6f994 + dc7b5eb commit 050c0a7
Show file tree
Hide file tree
Showing 100 changed files with 948 additions and 46,269 deletions.
26 changes: 1 addition & 25 deletions Rubberduck.API/Properties/AssemblyInfo.cs
@@ -1,19 +1,7 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Rubberduck.Resources.Registration;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Rubberduck.API")]
[assembly: AssemblyDescription("Rubberduck Reflection API")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Rubberduck-VBA")]
[assembly: AssemblyProduct("Rubberduck.API")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyCulture("en")]
[assembly: AssemblyTrademark("")]
[assembly: InternalsVisibleTo("RubberduckTests")]

// Setting ComVisible to false makes the types in this assembly not visible
Expand All @@ -23,15 +11,3 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid(RubberduckGuid.RubberduckApiTypeLibGuid)]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.*")]
86 changes: 14 additions & 72 deletions Rubberduck.API/Rubberduck.API.csproj
@@ -1,82 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<Product>Rubberduck.API</Product>
<Description>Rubberduck Reflection API</Description>
<Copyright>Copyright © 2018</Copyright>
<ProjectGuid>{AC1B4A57-364A-4F90-A0CD-6EE818349CE5}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Rubberduck.API</RootNamespace>
<AssemblyName>Rubberduck.API</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<!--
TODO: affix AssemblyVersion and/or FileVersion for COM-Registration?!
-->
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<Compile Include="VBA\ApiProvider.cs" />
<Compile Include="VBA\Accessibility.cs" />
<Compile Include="VBA\Declaration.cs" />
<Compile Include="VBA\Declarations.cs" />
<Compile Include="VBA\DeclarationType.cs" />
<Compile Include="VBA\IdentifierReference.cs" />
<Compile Include="VBA\IdentifierReferences.cs" />
<Compile Include="VBA\Parser.cs" />
<Compile Include="VBA\ParserState.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Rubberduck.Core\Rubberduck.Core.csproj">
<Project>{a1587eac-7b54-407e-853f-4c7493d0323e}</Project>
<Name>Rubberduck.Core</Name>
</ProjectReference>
<ProjectReference Include="..\Rubberduck.Main\Rubberduck.Main.csproj">
<Project>{E8AB5D93-2D0F-423D-BC15-5EE118673E48}</Project>
<Name>Rubberduck.Main</Name>
</ProjectReference>
<ProjectReference Include="..\Rubberduck.Parsing\Rubberduck.Parsing.csproj">
<Project>{a4a618e1-cbca-435f-9c6c-5181e030adfc}</Project>
<Name>Rubberduck.Parsing</Name>
</ProjectReference>
<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>
<Name>Rubberduck.VBEditor</Name>
</ProjectReference>
</ItemGroup>
<Import Project="..\RubberduckBaseProject.csproj" />

<ItemGroup>
<Folder Include="Plugin\" />
<ProjectReference Include="..\Rubberduck.Core\Rubberduck.Core.csproj" />
<ProjectReference Include="..\Rubberduck.Main\Rubberduck.Main.csproj" />
<ProjectReference Include="..\Rubberduck.Parsing\Rubberduck.Parsing.csproj" />
<ProjectReference Include="..\Rubberduck.Resources\Rubberduck.Resources.csproj" />
<ProjectReference Include="..\Rubberduck.VBEEditor\Rubberduck.VBEditor.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<ItemGroup>
<Analyzer Include="..\RubberduckCodeAnalysis\bin\Release\RubberduckCodeAnalysis.dll" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

This file was deleted.

0 comments on commit 050c0a7

Please sign in to comment.