Skip to content

Commit fc623b6

Browse files
committed
intial 2021 validated for Inventor and VaultInventorServer
1 parent 172ceb1 commit fc623b6

File tree

7 files changed

+24
-39
lines changed

7 files changed

+24
-39
lines changed
Binary file not shown.

iLogic-Vault-QuickstartLibrary/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Autodesk GmbH")]
1212
[assembly: AssemblyProduct("QuickstartiLogicLibrary")]
13-
[assembly: AssemblyCopyright("Copyright © 2019 Autodesk, Markus Koechl")]
13+
[assembly: AssemblyCopyright("Copyright © 2020 Autodesk, Markus Koechl")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("2020.25.4.0")]
36-
[assembly: AssemblyFileVersion("2020.25.4.0")]
35+
[assembly: AssemblyVersion("2021.26.0.0")]
36+
[assembly: AssemblyFileVersion("2021.26.0.0")]

iLogic-Vault-QuickstartLibrary/Sample Rules iLogic-Vault/iLogicVault_GetThumbnailFileBySourceFullFilePath.iLogicVb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ Sub Main
1818
If mImageFile Is Nothing Then
1919
Logger.Error("Could not convert thumbnail to image file - Please double check that file exists in Vault including a thumbnail.")
2020
Else
21-
''add next action using the downloaded file here...
21+
Logger.Info("File " & mImageFile & " found by full file name and downloaded to local workspace.")
22+
''add next action using the downloaded file here...
2223

2324
End If
2425
End Sub

iLogic-Vault-QuickstartLibrary/iLogic-Vault QuickstartLibrary.csproj

Lines changed: 6 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -61,42 +61,24 @@
6161
</PropertyGroup>
6262
<ItemGroup>
6363
<Reference Include="Autodesk.Connectivity.Explorer.ExtensibilityTools">
64-
<HintPath>..\..\..\..\..\..\Program Files\Autodesk\Autodesk Vault 2020 SDK\bin\x64\Autodesk.Connectivity.Explorer.ExtensibilityTools.dll</HintPath>
64+
<HintPath>..\..\..\..\..\Program Files\Autodesk\Vault Client 2021\Explorer\Autodesk.Connectivity.Explorer.ExtensibilityTools.dll</HintPath>
6565
<Private>False</Private>
6666
</Reference>
6767
<Reference Include="Autodesk.Connectivity.WebServices">
68-
<HintPath>..\..\..\..\..\..\Program Files\Autodesk\Autodesk Vault 2020 SDK\bin\x64\Autodesk.Connectivity.WebServices.dll</HintPath>
68+
<HintPath>..\..\..\..\..\Program Files\Autodesk\Vault Client 2021\Explorer\Autodesk.Connectivity.WebServices.dll</HintPath>
6969
<Private>False</Private>
7070
</Reference>
7171
<Reference Include="Autodesk.DataManagement.Client.Framework">
72-
<HintPath>..\..\..\..\..\..\Program Files\Autodesk\Autodesk Vault 2020 SDK\bin\x64\Autodesk.DataManagement.Client.Framework.dll</HintPath>
72+
<HintPath>..\..\..\..\..\Program Files\Autodesk\Vault Client 2021\Explorer\Autodesk.DataManagement.Client.Framework.dll</HintPath>
7373
<Private>False</Private>
7474
</Reference>
7575
<Reference Include="Autodesk.DataManagement.Client.Framework.Vault">
76-
<HintPath>..\..\..\..\..\Program Files\Autodesk\Autodesk Vault 2020 SDK\bin\x64\Autodesk.DataManagement.Client.Framework.Vault.dll</HintPath>
76+
<HintPath>..\..\..\..\..\Program Files\Autodesk\Vault Client 2021\Explorer\Autodesk.DataManagement.Client.Framework.Vault.dll</HintPath>
7777
<Private>False</Private>
7878
</Reference>
79-
<Reference Include="Autodesk.iLogic.Automation">
80-
<HintPath>..\temp 2020\Autodesk.iLogic.Automation.dll</HintPath>
81-
<Private>False</Private>
82-
</Reference>
83-
<Reference Include="Autodesk.iLogic.Common">
84-
<HintPath>..\temp 2020\Autodesk.iLogic.Common.dll</HintPath>
85-
<Private>False</Private>
86-
</Reference>
87-
<Reference Include="Autodesk.iLogic.Interfaces">
88-
<HintPath>..\temp 2020\Autodesk.iLogic.Interfaces.dll</HintPath>
89-
<Private>False</Private>
90-
</Reference>
91-
<Reference Include="Autodesk.Inventor.Interop, Version=23.1.0.0, Culture=neutral, PublicKeyToken=d84147f8b4276564, processorArchitecture=MSIL">
92-
<SpecificVersion>False</SpecificVersion>
93-
<EmbedInteropTypes>True</EmbedInteropTypes>
94-
<HintPath>..\temp 2020\Autodesk.Inventor.Interop.dll</HintPath>
95-
</Reference>
9679
<Reference Include="Connectivity.Application.VaultBase">
97-
<HintPath>..\temp 2020\Connectivity.Application.VaultBase.dll</HintPath>
80+
<HintPath>..\..\..\..\..\Program Files\Autodesk\Vault Client 2021\Explorer\Connectivity.Application.VaultBase.dll</HintPath>
9881
<Private>False</Private>
99-
<EmbedInteropTypes>False</EmbedInteropTypes>
10082
</Reference>
10183
<Reference Include="System" />
10284
<Reference Include="System.Core" />
@@ -126,7 +108,7 @@
126108
</Content>
127109
</ItemGroup>
128110
<ItemGroup>
129-
<None Include="Inventor iLogic - Vault Quickstart Library - 2020.2.1.pdf" />
111+
<None Include="Inventor iLogic - Vault Quickstart Library.pdf" />
130112
<None Include="Properties\Settings.settings">
131113
<Generator>SettingsSingleFileGenerator</Generator>
132114
<LastGenOutput>Settings.Designer.cs</LastGenOutput>

iLogic-Vault.sln

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.28010.2003
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30002.166
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "iLogic-PDM", "iLogic-Vault\iLogic-PDM.vbproj", "{2929C461-4ECF-4ADD-9A96-904EA652B085}"
77
EndProject
@@ -11,6 +11,11 @@ Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "iLogicDEBUG", "iLogicDEBUG\
1111
EndProject
1212
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "iLogic-VaultInvServer Library", "iLogic-VaultInvServer Library\iLogic-VaultInvServer Library.csproj", "{D52A41BF-F382-4D83-A3AC-1FF171C5056B}"
1313
EndProject
14+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F107EC0A-5BE1-4475-8B96-764A0F847C26}"
15+
ProjectSection(SolutionItems) = preProject
16+
Inventor iLogic - Vault Quickstart Library.pdf = Inventor iLogic - Vault Quickstart Library.pdf
17+
EndProjectSection
18+
EndProject
1419
Global
1520
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1621
Debug|Any CPU = Debug|Any CPU

iLogic-VaultInvServer Library/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("2020.25.4.0")]
36-
[assembly: AssemblyFileVersion("2020.25.4.0")]
35+
[assembly: AssemblyVersion("2021.26.0.0")]
36+
[assembly: AssemblyFileVersion("2021.26.0.0")]

iLogic-VaultInvServer Library/iLogic-VaultInvServer Library.csproj

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,22 +51,19 @@
5151
<PlatformTarget>x64</PlatformTarget>
5252
<ErrorReport>prompt</ErrorReport>
5353
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
54+
<DocumentationFile>bin\x64\Release\QuickstartiLogicVltInvSrvLibrary.xml</DocumentationFile>
5455
</PropertyGroup>
5556
<ItemGroup>
5657
<Reference Include="Autodesk.Connectivity.WebServices">
57-
<HintPath>..\..\..\..\..\Program Files\Autodesk\Autodesk Vault 2020 SDK\bin\x64\Autodesk.Connectivity.WebServices.dll</HintPath>
58+
<HintPath>..\..\..\..\..\Program Files\Autodesk\Vault Client 2021\Explorer\Autodesk.Connectivity.WebServices.dll</HintPath>
5859
<Private>False</Private>
5960
</Reference>
6061
<Reference Include="Autodesk.DataManagement.Client.Framework">
61-
<HintPath>..\..\..\..\..\Program Files\Autodesk\Autodesk Vault 2020 SDK\bin\x64\Autodesk.DataManagement.Client.Framework.dll</HintPath>
62+
<HintPath>..\..\..\..\..\Program Files\Autodesk\Vault Client 2021\Explorer\Autodesk.DataManagement.Client.Framework.dll</HintPath>
6263
<Private>False</Private>
6364
</Reference>
6465
<Reference Include="Autodesk.DataManagement.Client.Framework.Vault">
65-
<HintPath>..\..\..\..\..\Program Files\Autodesk\Autodesk Vault 2020 SDK\bin\x64\Autodesk.DataManagement.Client.Framework.Vault.dll</HintPath>
66-
<Private>False</Private>
67-
</Reference>
68-
<Reference Include="Autodesk.iLogic.Interfaces">
69-
<HintPath>..\..\..\..\..\Program Files\Autodesk\Vault Professional 2020\Explorer\Inventor Server\Bin\Autodesk.iLogic.Interfaces.dll</HintPath>
66+
<HintPath>..\..\..\..\..\Program Files\Autodesk\Vault Client 2021\Explorer\Autodesk.DataManagement.Client.Framework.Vault.dll</HintPath>
7067
<Private>False</Private>
7168
</Reference>
7269
<Reference Include="System" />

0 commit comments

Comments
 (0)