Skip to content

Commit f86f58b

Browse files
For AutoCAD 2024
1 parent d2f4fa6 commit f86f58b

35 files changed

+110
-1185
lines changed

ArxLocatorWizard2010/ArxLocatorWizard.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<UseApplicationTrust>false</UseApplicationTrust>
3535
<BootstrapperEnabled>true</BootstrapperEnabled>
3636
<TargetFrameworkProfile />
37+
<OutputPath>bin\Debug\</OutputPath>
3738
</PropertyGroup>
3839
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3940
<DebugSymbols>true</DebugSymbols>
@@ -64,6 +65,7 @@
6465
<SpecificVersion>False</SpecificVersion>
6566
<HintPath>..\..\..\..\..\..\..\..\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\EnvDTE.dll</HintPath>
6667
</Reference>
68+
<Reference Include="Microsoft.VisualStudio.Interop, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
6769
<Reference Include="Microsoft.VisualStudio.TemplateWizardInterface, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
6870
<SpecificVersion>False</SpecificVersion>
6971
<HintPath>..\..\..\..\..\..\..\..\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\Microsoft.VisualStudio.TemplateWizardInterface.dll</HintPath>
@@ -74,7 +76,6 @@
7476
<Reference Include="System.Windows.Forms" />
7577
<Reference Include="System.Data" />
7678
<Reference Include="System.Xml" />
77-
<Reference Include="VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
7879
</ItemGroup>
7980
<ItemGroup>
8081
<Compile Include="About Box\AboutBox.cs">
@@ -102,7 +103,9 @@
102103
</EmbeddedResource>
103104
</ItemGroup>
104105
<ItemGroup>
105-
<None Include="ObjectARXLocatorWizard.snk" />
106+
<None Include="ObjectARXLocatorWizard.snk">
107+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
108+
</None>
106109
</ItemGroup>
107110
<ItemGroup>
108111
<ProjectReference Include="..\XmlConfigurator2010\XmlConfigurator.csproj">
@@ -129,7 +132,9 @@
129132
</ItemGroup>
130133
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
131134
<PropertyGroup>
132-
<PostBuildEvent>xcopy $(TargetPath) $(SolutionDir)Output /Y</PostBuildEvent>
135+
<PostBuildEvent>xcopy $(TargetPath) $(SolutionDir)Output /Y
136+
137+
</PostBuildEvent>
133138
</PropertyGroup>
134139
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
135140
Other similar extension points exist, see Microsoft.Common.targets.

ArxLocatorWizard2010/Wizard.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ string FindAutoCAD()
656656
catch
657657
{
658658
//*If AutoCAD is not found we will return default location*//
659-
acadpath = "C:\\Program Files\\Autodesk\\AutoCAD 2022";
659+
acadpath = "C:\\Program Files\\Autodesk\\AutoCAD 2024";
660660
}
661661
return (acadpath);
662662
}

0 commit comments

Comments
 (0)