Skip to content

Commit

Permalink
Adding support for AutoCAD 2013.
Browse files Browse the repository at this point in the history
Autodesk split out a chunk of the "ARX" layer of ObjectARX 2013 into a new "CRX" layer. This involved moving a bunch of types that were in AcMgd.dll into AcCoreMgd.dll including the CommandMethodAttribute and Editor types. Since the Gallio.AutoCAD.Plugin assembly was built against an old version of ObjectARX (2007) it wouldn't load into AutoCAD 2013 because these types had been moved.

To fix this I've added projects that build the Gallio.AutoCAD.Plugin source against the ObjectARX 2007, 2010 and 2013 APIs. The AutoCAD test runner now asks the AutoCAD process what version it is (via IAcadApplication.Version) and then NETLOADs the appropriate version of Gallio.AutoCAD.Plugin.
  • Loading branch information
mikesandberg@gmail.com committed May 4, 2012
1 parent 02abbb2 commit 81947b1
Show file tree
Hide file tree
Showing 41 changed files with 3,159 additions and 2,522 deletions.
1,490 changes: 751 additions & 739 deletions src/All.sln

Large diffs are not rendered by default.

2,957 changes: 1,491 additions & 1,466 deletions src/All.vs2010.sln

Large diffs are not rendered by default.

12 changes: 10 additions & 2 deletions src/Extensions/AutoCAD/AutoCAD.module
Expand Up @@ -3,7 +3,9 @@

<ItemGroup>
<CSharpProject Include="Gallio.AutoCAD\Gallio.AutoCAD$(ProjectVariant).csproj" />
<CSharpProject Include="Gallio.AutoCAD.Plugin\Gallio.AutoCAD.Plugin$(ProjectVariant).csproj" />
<CSharpProject Include="Gallio.AutoCAD.Plugin\Gallio.AutoCAD.Plugin170$(ProjectVariant).csproj" />
<CSharpProject Include="Gallio.AutoCAD.Plugin\Gallio.AutoCAD.Plugin180$(ProjectVariant).csproj" />
<CSharpProject Include="Gallio.AutoCAD.Plugin\Gallio.AutoCAD.Plugin190$(ProjectVariant).csproj" />
<CSharpProject Include="Gallio.AutoCAD.Tests\Gallio.AutoCAD.Tests$(ProjectVariant).csproj" />
<CSharpProject Include="Gallio.AutoCAD.UI\Gallio.AutoCAD.UI$(ProjectVariant).csproj" />

Expand All @@ -16,7 +18,13 @@
<PluginFile Include="Gallio.AutoCAD\Gallio.AutoCAD.plugin">
<ImagePath>bin\AutoCAD</ImagePath>
</PluginFile>
<AssemblyFile Include="Gallio.AutoCAD.Plugin\bin\Gallio.AutoCAD.Plugin.dll">
<AssemblyFile Include="Gallio.AutoCAD.Plugin\bin\v17.0\Gallio.AutoCAD.Plugin170.dll">
<ImagePath>bin\AutoCAD</ImagePath>
</AssemblyFile>
<AssemblyFile Include="Gallio.AutoCAD.Plugin\bin\v18.0\Gallio.AutoCAD.Plugin180.dll">
<ImagePath>bin\AutoCAD</ImagePath>
</AssemblyFile>
<AssemblyFile Include="Gallio.AutoCAD.Plugin\bin\v19.0\Gallio.AutoCAD.Plugin190.dll">
<ImagePath>bin\AutoCAD</ImagePath>
</AssemblyFile>
<AssemblyFile Include="Gallio.AutoCAD.UI\bin\Gallio.AutoCAD.UI.dll">
Expand Down
289 changes: 148 additions & 141 deletions src/Extensions/AutoCAD/AutoCAD.sln

Large diffs are not rendered by default.

16 changes: 15 additions & 1 deletion src/Extensions/AutoCAD/AutoCAD.vs2010.sln
Expand Up @@ -35,7 +35,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AutoCAD", "AutoCAD", "{65CD
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gallio.AutoCAD.vs2010", "Gallio.AutoCAD\Gallio.AutoCAD.vs2010.csproj", "{F7F0D285-79D0-452A-A791-84B174C1546E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gallio.AutoCAD.Plugin.vs2010", "Gallio.AutoCAD.Plugin\Gallio.AutoCAD.Plugin.vs2010.csproj", "{AFBC884C-F0A5-4ABE-B8E7-C7DD585134F5}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gallio.AutoCAD.Plugin170.vs2010", "Gallio.AutoCAD.Plugin\Gallio.AutoCAD.Plugin170.vs2010.csproj", "{AFBC884C-F0A5-4ABE-B8E7-C7DD585134F5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gallio.AutoCAD.Plugin180.vs2010", "Gallio.AutoCAD.Plugin\Gallio.AutoCAD.Plugin180.vs2010.csproj", "{49E5387B-6AA3-4377-9BB9-48623ED9B0CE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gallio.AutoCAD.Plugin190.vs2010", "Gallio.AutoCAD.Plugin\Gallio.AutoCAD.Plugin190.vs2010.csproj", "{9580BC08-BA07-47FD-91F6-AA52C7111D05}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gallio.AutoCAD.Tests.vs2010", "Gallio.AutoCAD.Tests\Gallio.AutoCAD.Tests.vs2010.csproj", "{249CBFC1-FB73-4569-984B-D844EBA59F67}"
EndProject
Expand Down Expand Up @@ -107,6 +111,14 @@ Global
{AFBC884C-F0A5-4ABE-B8E7-C7DD585134F5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AFBC884C-F0A5-4ABE-B8E7-C7DD585134F5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AFBC884C-F0A5-4ABE-B8E7-C7DD585134F5}.Release|Any CPU.Build.0 = Release|Any CPU
{49E5387B-6AA3-4377-9BB9-48623ED9B0CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{49E5387B-6AA3-4377-9BB9-48623ED9B0CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{49E5387B-6AA3-4377-9BB9-48623ED9B0CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{49E5387B-6AA3-4377-9BB9-48623ED9B0CE}.Release|Any CPU.Build.0 = Release|Any CPU
{9580BC08-BA07-47FD-91F6-AA52C7111D05}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9580BC08-BA07-47FD-91F6-AA52C7111D05}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9580BC08-BA07-47FD-91F6-AA52C7111D05}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9580BC08-BA07-47FD-91F6-AA52C7111D05}.Release|Any CPU.Build.0 = Release|Any CPU
{249CBFC1-FB73-4569-984B-D844EBA59F67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{249CBFC1-FB73-4569-984B-D844EBA59F67}.Debug|Any CPU.Build.0 = Debug|Any CPU
{249CBFC1-FB73-4569-984B-D844EBA59F67}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down Expand Up @@ -135,6 +147,8 @@ Global
{45224C3F-B0F1-4D70-8516-B50100DEF79B} = {D802860C-403B-43DF-BFC4-92F824825505}
{F7F0D285-79D0-452A-A791-84B174C1546E} = {65CD393E-F6FA-4703-808B-C91390B47CCD}
{AFBC884C-F0A5-4ABE-B8E7-C7DD585134F5} = {65CD393E-F6FA-4703-808B-C91390B47CCD}
{49E5387B-6AA3-4377-9BB9-48623ED9B0CE} = {65CD393E-F6FA-4703-808B-C91390B47CCD}
{9580BC08-BA07-47FD-91F6-AA52C7111D05} = {65CD393E-F6FA-4703-808B-C91390B47CCD}
{249CBFC1-FB73-4569-984B-D844EBA59F67} = {65CD393E-F6FA-4703-808B-C91390B47CCD}
{5F9B23E4-1CCF-46FE-B0FC-C1E58B2EE83A} = {65CD393E-F6FA-4703-808B-C91390B47CCD}
EndGlobalSection
Expand Down
14 changes: 11 additions & 3 deletions src/Extensions/AutoCAD/AutoCAD.wxs
Expand Up @@ -12,8 +12,14 @@
<Component Id="Gallio.AutoCAD.plugin" Guid="3c258bc9-05f5-41a4-b0a1-f848ecc529f4" Win64="$(var.Win64Binary)">
<File Name="Gallio.AutoCAD.plugin" KeyPath="yes" />
</Component>
<Component Id="Gallio.AutoCAD.Plugin.dll" Guid="9c467029-0caa-4138-862c-f09a1839698b" Win64="$(var.Win64Binary)">
<File Name="Gallio.AutoCAD.Plugin.dll" KeyPath="yes" />
<Component Id="Gallio.AutoCAD.Plugin170.dll" Guid="98bb9b5e-0e60-41d6-834b-2232e09b061e" Win64="$(var.Win64Binary)">
<File Name="Gallio.AutoCAD.Plugin170.dll" KeyPath="yes" />
</Component>
<Component Id="Gallio.AutoCAD.Plugin180.dll" Guid="6a08cd79-9a91-4221-b816-cc5ea5212f54" Win64="$(var.Win64Binary)">
<File Name="Gallio.AutoCAD.Plugin180.dll" KeyPath="yes" />
</Component>
<Component Id="Gallio.AutoCAD.Plugin190.dll" Guid="043b12fa-0738-4bbb-80c5-2dd870a9b9da" Win64="$(var.Win64Binary)">
<File Name="Gallio.AutoCAD.Plugin190.dll" KeyPath="yes" />
</Component>
<Component Id="Gallio.AutoCAD.UI.dll" Guid="c97e1d5e-d646-4d94-9291-325833ad4389" Win64="$(var.Win64Binary)">
<File Name="Gallio.AutoCAD.UI.dll" KeyPath="yes" />
Expand All @@ -39,7 +45,9 @@
Description="Installs the AutoCAD integration features.">
<ComponentRef Id="Gallio.AutoCAD.dll" />
<ComponentRef Id="Gallio.AutoCAD.plugin" />
<ComponentRef Id="Gallio.AutoCAD.Plugin.dll" />
<ComponentRef Id="Gallio.AutoCAD.Plugin170.dll" />
<ComponentRef Id="Gallio.AutoCAD.Plugin180.dll" />
<ComponentRef Id="Gallio.AutoCAD.Plugin190.dll" />
<ComponentRef Id="Gallio.AutoCAD.UI.dll" />
<ComponentRef Id="Gallio.AutoCAD.UI.plugin" />
<ComponentRef Id="Gallio.AutoCAD.Resources" />
Expand Down
Expand Up @@ -4,44 +4,44 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{AFBC884C-F0A5-4ABE-B8E7-C7DD585134F5}</ProjectGuid>
<ProjectGuid>{2C08486B-BE25-44AE-B0D6-19FB3E273377}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Gallio.AutoCAD.Plugin</RootNamespace>
<AssemblyName>Gallio.AutoCAD.Plugin</AssemblyName>
<AssemblyName>Gallio.AutoCAD.Plugin170</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<OutputPath>bin\v17.0\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Gallio.AutoCAD.Plugin.xml</DocumentationFile>
<DocumentationFile>bin\v17.0\Gallio.AutoCAD.Plugin170.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<OutputPath>bin\v17.0\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Gallio.AutoCAD.Plugin.xml</DocumentationFile>
<DocumentationFile>bin\v17.0\Gallio.AutoCAD.Plugin170.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="AcDbMgd, Version=17.0.51.0, Culture=neutral, processorArchitecture=x86">
<Reference Include="acdbmgd, Version=17.0.51.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\AcDbMgd.dll</HintPath>
<Private>True</Private>
<HintPath>..\libs\v17.0\AcDbMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="AcMgd, Version=17.0.51.0, Culture=neutral, processorArchitecture=x86">
<Reference Include="acmgd, Version=17.0.51.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\AcMgd.dll</HintPath>
<Private>True</Private>
<HintPath>..\libs\v17.0\AcMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down
Expand Up @@ -9,40 +9,40 @@
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Gallio.AutoCAD.Plugin</RootNamespace>
<AssemblyName>Gallio.AutoCAD.Plugin</AssemblyName>
<AssemblyName>Gallio.AutoCAD.Plugin170</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<OutputPath>bin\v17.0\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Gallio.AutoCAD.Plugin.xml</DocumentationFile>
<DocumentationFile>bin\v17.0\Gallio.AutoCAD.Plugin170.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<OutputPath>bin\v17.0\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Gallio.AutoCAD.Plugin.xml</DocumentationFile>
<DocumentationFile>bin\v17.0\Gallio.AutoCAD.Plugin170.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="AcDbMgd, Version=17.0.51.0, Culture=neutral, processorArchitecture=x86">
<Reference Include="acdbmgd, Version=17.0.51.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\AcDbMgd.dll</HintPath>
<Private>True</Private>
<HintPath>..\libs\v17.0\AcDbMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="AcMgd, Version=17.0.51.0, Culture=neutral, processorArchitecture=x86">
<Reference Include="acmgd, Version=17.0.51.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\AcMgd.dll</HintPath>
<Private>True</Private>
<HintPath>..\libs\v17.0\AcMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down
@@ -0,0 +1,76 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{30309500-4E90-4FC9-BBE1-62FD56AA5849}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Gallio.AutoCAD.Plugin</RootNamespace>
<AssemblyName>Gallio.AutoCAD.Plugin180</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\v18.0\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\v18.0\Gallio.AutoCAD.Plugin180.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\v18.0\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\v18.0\Gallio.AutoCAD.Plugin180.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="acdbmgd, Version=18.0.0.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\v18.0\AcDbMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="acmgd, Version=18.0.0.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\v18.0\AcMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\..\SDK\Loader\Gallio.Loader.cs">
<Link>Gallio.Loader.cs</Link>
</Compile>
<Compile Include="Commands.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Gallio\Gallio\Gallio.csproj">
<Project>{6CAB7735-05DA-480D-9A04-50615B00F886}</Project>
<Name>Gallio %28Gallio\Gallio%29</Name>
</ProjectReference>
<ProjectReference Include="..\Gallio.AutoCAD\Gallio.AutoCAD.csproj">
<Project>{F7F0D285-79D0-452A-A791-84B174C1546E}</Project>
<Name>Gallio.AutoCAD</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.20506</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{49E5387B-6AA3-4377-9BB9-48623ED9B0CE}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Gallio.AutoCAD.Plugin</RootNamespace>
<AssemblyName>Gallio.AutoCAD.Plugin180</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\v18.0\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\v18.0\Gallio.AutoCAD.Plugin180.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\v18.0\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\v18.0\Gallio.AutoCAD.Plugin180.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="acdbmgd, Version=18.0.0.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\v18.0\AcDbMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="acmgd, Version=18.0.0.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\v18.0\AcMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\..\SDK\Loader\Gallio.Loader.cs">
<Link>Gallio.Loader.cs</Link>
</Compile>
<Compile Include="Commands.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Gallio\Gallio\Gallio.vs2010.csproj">
<Project>{6CAB7735-05DA-480D-9A04-50615B00F886}</Project>
<Name>Gallio.vs2010</Name>
</ProjectReference>
<ProjectReference Include="..\Gallio.AutoCAD\Gallio.AutoCAD.vs2010.csproj">
<Project>{F7F0D285-79D0-452A-A791-84B174C1546E}</Project>
<Name>Gallio.AutoCAD.vs2010</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

0 comments on commit 81947b1

Please sign in to comment.