Skip to content

Commit 71391a1

Browse files
committed
Add files for building AutoCAD .NET wizard 2022
1 parent ebcf687 commit 71391a1

File tree

12 files changed

+12
-11
lines changed

12 files changed

+12
-11
lines changed

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 2021";
659+
acadpath = "C:\\Program Files\\Autodesk\\AutoCAD 2022";
660660
}
661661
return (acadpath);
662662
}

AutoCAD CSharp plug-in/Template Data/MyTemplate.vstemplate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Project">
22
<TemplateData>
3-
<Name>AutoCAD 2021 CSharp plug-in</Name>
3+
<Name>AutoCAD 2022 CSharp plug-in</Name>
44
<Description>This is a basic AutoCAD Plugin in C#</Description>
55
<ProjectType>CSharp</ProjectType>
66
<LanguageTag>C#</LanguageTag>

AutoCAD VB plug-in/Template Data/MyTemplate.vstemplate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Project">
22
<TemplateData>
3-
<Name>AutoCAD 2021 VB plug-in</Name>
3+
<Name>AutoCAD 2022 VB plug-in</Name>
44
<Description>This is a basic AutoCAD Plugin in VB.net</Description>
55
<ProjectType>VisualBasic</ProjectType>
66
<LanguageTag>Visual Basic</LanguageTag>

AutoCADNetWizardsInstaller/AutoCADNetWizards.wixproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
4545
</Target>
4646
<PropertyGroup>
47-
<PostBuildEvent>del /F $(SolutionDir)AutoCAD_2021_dotnet_wizards.zip
48-
7z a -tzip $(SolutionDir)AutoCAD_2021_dotnet_wizards.zip $(TargetDir)$(SolutionName).msi</PostBuildEvent>
47+
<PostBuildEvent>del /F $(SolutionDir)AutoCAD_2022_dotnet_wizards.zip
48+
7z a -tzip $(SolutionDir)AutoCAD_2022_dotnet_wizards.zip $(TargetDir)$(SolutionName).msi</PostBuildEvent>
4949
</PropertyGroup>
5050
<!--
5151
To modify your build process, add your task inside one of the targets below and uncomment it.

AutoCADNetWizardsInstaller/AutoCADNetWizards.wxs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
33

44
<?define RTMProductVersion = "18.0.0"?> <!-- The first one - do not edit -->
5-
<?define ProductVersion = "24.0.0"?>
6-
<?define UpgradeCode = "{B1ECA4AC-8256-4C1A-9F70-E8C751FD2099}"?>
5+
<?define ProductVersion = "24.1.0"?>
6+
<!--?define UpgradeCode = "{B1ECA4AC-8256-4C1A-9F70-E8C751FD2099}"?-->
7+
<?define UpgradeCode = "{D160AB65-1981-415C-B806-5D1F6CA0C5FF}"?>
78

89
<Product
910
Id="*"
1011
Codepage="1252"
1112
Language="1033"
1213
Manufacturer="Autodesk"
13-
Name="AutoCAD 2021 .NET Wizards"
14+
Name="AutoCAD 2022 .NET Wizards"
1415
UpgradeCode="$(var.UpgradeCode)"
1516
Version="$(var.ProductVersion)"
1617
>
0 Bytes
Binary file not shown.

AutoCADNetWizardsInstaller/Output/AutoCAD CSharp plug-in/MyTemplate.vstemplate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Project">
22
<TemplateData>
3-
<Name>AutoCAD 2021 CSharp plug-in</Name>
3+
<Name>AutoCAD 2022 CSharp plug-in</Name>
44
<Description>This is a basic AutoCAD Plugin in C#</Description>
55
<ProjectType>CSharp</ProjectType>
66
<LanguageTag>C#</LanguageTag>
0 Bytes
Binary file not shown.

AutoCADNetWizardsInstaller/Output/AutoCAD VB plug-in/MyTemplate.vstemplate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Project">
22
<TemplateData>
3-
<Name>AutoCAD 2021 VB plug-in</Name>
3+
<Name>AutoCAD 2022 VB plug-in</Name>
44
<Description>This is a basic AutoCAD Plugin in VB.net</Description>
55
<ProjectType>VisualBasic</ProjectType>
66
<LanguageTag>Visual Basic</LanguageTag>
2.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)