Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Commit

Permalink
support navisworks Simulate
Browse files Browse the repository at this point in the history
  • Loading branch information
chuongmep committed Jan 30, 2023
1 parent d389246 commit 3727935
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 13 deletions.
31 changes: 31 additions & 0 deletions .idea/.idea.AppInfo/.idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 0 additions & 8 deletions .idea/.idea.AppInfo/.idea/misc.xml

This file was deleted.

2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Changelog
- 2023-01-30 **1.0.1**
- Add support for Platform Navisworks Simulate, See detail at [Differences between Navisworks Manage and Navisworks Simulate](https://knowledge.autodesk.com/support/navisworks-products/troubleshooting/caas/sfdcarticles/sfdcarticles/Functionality-differences-between-Navisworks-Manage-and-Simulate.html)
- 2022-05-17 **1.0.0**
- First release support Navisworks 2020,2021,2022,2023

Expand Down
2 changes: 1 addition & 1 deletion Installer/Installer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
const string projectName = "Navisworks App Info";
const string outputName = "Navis.AppInfo";
const string outputDir = "output";
const string version = "1.0.0";
const string version = "1.0.1";
const string xmlName = "PackageContents.xml";
var fileName = new StringBuilder().Append(outputName).Append("-").Append(version);
var project = new Project
Expand Down
8 changes: 4 additions & 4 deletions NavisAppInfo/PackageContents.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<ApplicationPackage SchemaVersion="1.0" Name="AppInfo" AppVersion="1.0.0.0" ProductType="Application" Author="ADSK" ProductCode="{5D6C04B0-D1AE-46E8-B32A-B7F838DFC1D6}">
<Components Description="Navisworks 2020 parts">
<RuntimeRequirements OS="Win64" Platform="NAVMAN" SeriesMin="Nw17" SeriesMax="Nw17" />
<RuntimeRequirements OS="Win64" Platform="NAVMAN|NAVSIM" SeriesMin="Nw17" SeriesMax="Nw17" />
<ComponentEntry AppName="AppInfo" AppType="ManagedPlugin" ModuleName="./Contents/2020/AppInfo.dll" />
</Components>
<Components Description="Navisworks 2021 parts">
<RuntimeRequirements OS="Win64" Platform="NAVMAN" SeriesMin="Nw18" SeriesMax="Nw18" />
<RuntimeRequirements OS="Win64" Platform="NAVMAN|NAVSIM" SeriesMin="Nw18" SeriesMax="Nw18" />
<ComponentEntry AppName="AppInfo" AppType="ManagedPlugin" ModuleName="./Contents/2021/AppInfo.dll" />
</Components>
<Components Description="Navisworks 2022 parts">
<RuntimeRequirements OS="Win64" Platform="NAVMAN" SeriesMin="Nw19" SeriesMax="Nw19" />
<RuntimeRequirements OS="Win64" Platform="NAVMAN|NAVSIM" SeriesMin="Nw19" SeriesMax="Nw19" />
<ComponentEntry AppName="AppInfo" AppType="ManagedPlugin" ModuleName="./Contents/2022/AppInfo.dll" />
</Components>
<Components Description="Navisworks 2023 parts">
<RuntimeRequirements OS="Win64" Platform="NAVMAN" SeriesMin="Nw20" SeriesMax="Nw20" />
<RuntimeRequirements OS="Win64" Platform="NAVMAN|NAVSIM" SeriesMin="Nw20" SeriesMax="Nw20" />
<ComponentEntry AppName="AppInfo" AppType="ManagedPlugin" ModuleName="./Contents/2023/AppInfo.dll" />
</Components>
</ApplicationPackage>

0 comments on commit 3727935

Please sign in to comment.