├── .gitattributes ├── .vs └── RevitExportGltf │ ├── v15 │ ├── .suo │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal │ └── v16 │ └── .suo ├── App.config ├── App.xaml ├── App.xaml.cs ├── Command.cs ├── Containers.cs ├── Docume ├── binFilePrint.txt ├── 丢失有纹理贴图.png └── 效果图.png ├── LICENSE ├── ObjectData.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── RevitExportGltf.csproj ├── RevitExportGltf.md ├── RevitExportGltf.sln ├── RevitExportGltf ├── App.config ├── App.xaml ├── App.xaml.cs ├── Command.cs ├── Containers.cs ├── Docume │ ├── Revit导出gltf工具说明文档.md │ ├── binFilePrint.txt │ ├── 丢失有纹理贴图.png │ └── 效果图.png ├── ObjectData.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RevitExportGltf.csproj ├── RevitExportGltfContext.cs ├── Util.cs ├── WPF │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs ├── bin │ └── Dotfuscator1.xml ├── glTF.cs ├── libs │ ├── Revit2018 │ │ ├── RevitAPI.dll │ │ ├── RevitAPIUI.dll │ │ └── UIFrameworkServices.dll │ └── SharpGLTF │ │ ├── SharpGLTF.Core.dll │ │ └── SharpGLTF.Toolkit.dll └── packages.config ├── RevitExportGltfContext.cs ├── Util.cs ├── WPF ├── MainWindow.xaml └── MainWindow.xaml.cs ├── glTF.cs ├── libs ├── Revit2018 │ ├── RevitAPI.dll │ ├── RevitAPIUI.dll │ └── UIFrameworkServices.dll ├── Revit2020 │ ├── RevitAPI.dll │ ├── RevitAPIUI.dll │ └── UIFrameworkServices.dll └── SharpGLTF │ ├── SharpGLTF.Core.dll │ └── SharpGLTF.Toolkit.dll ├── packages.config └── packages └── Newtonsoft.Json.13.0.1 ├── .signature.p7s ├── LICENSE.md ├── Newtonsoft.Json.13.0.1.nupkg ├── lib ├── net20 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── net35 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── net40 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── net45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── netstandard1.0 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── netstandard1.3 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml └── netstandard2.0 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml └── packageIcon.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vs/RevitExportGltf/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/.vs/RevitExportGltf/v15/.suo -------------------------------------------------------------------------------- /.vs/RevitExportGltf/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/RevitExportGltf/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/.vs/RevitExportGltf/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/RevitExportGltf/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/.vs/RevitExportGltf/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/RevitExportGltf/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/.vs/RevitExportGltf/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /.vs/RevitExportGltf/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/.vs/RevitExportGltf/v16/.suo -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/App.config -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Command.cs -------------------------------------------------------------------------------- /Containers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Containers.cs -------------------------------------------------------------------------------- /Docume/binFilePrint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Docume/binFilePrint.txt -------------------------------------------------------------------------------- /Docume/丢失有纹理贴图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Docume/丢失有纹理贴图.png -------------------------------------------------------------------------------- /Docume/效果图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Docume/效果图.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/LICENSE -------------------------------------------------------------------------------- /ObjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/ObjectData.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/README.md -------------------------------------------------------------------------------- /RevitExportGltf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf.csproj -------------------------------------------------------------------------------- /RevitExportGltf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf.md -------------------------------------------------------------------------------- /RevitExportGltf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf.sln -------------------------------------------------------------------------------- /RevitExportGltf/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/App.config -------------------------------------------------------------------------------- /RevitExportGltf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/App.xaml -------------------------------------------------------------------------------- /RevitExportGltf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/App.xaml.cs -------------------------------------------------------------------------------- /RevitExportGltf/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Command.cs -------------------------------------------------------------------------------- /RevitExportGltf/Containers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Containers.cs -------------------------------------------------------------------------------- /RevitExportGltf/Docume/Revit导出gltf工具说明文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Docume/Revit导出gltf工具说明文档.md -------------------------------------------------------------------------------- /RevitExportGltf/Docume/binFilePrint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Docume/binFilePrint.txt -------------------------------------------------------------------------------- /RevitExportGltf/Docume/丢失有纹理贴图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Docume/丢失有纹理贴图.png -------------------------------------------------------------------------------- /RevitExportGltf/Docume/效果图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Docume/效果图.png -------------------------------------------------------------------------------- /RevitExportGltf/ObjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/ObjectData.cs -------------------------------------------------------------------------------- /RevitExportGltf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RevitExportGltf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RevitExportGltf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Properties/Resources.resx -------------------------------------------------------------------------------- /RevitExportGltf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RevitExportGltf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Properties/Settings.settings -------------------------------------------------------------------------------- /RevitExportGltf/RevitExportGltf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/RevitExportGltf.csproj -------------------------------------------------------------------------------- /RevitExportGltf/RevitExportGltfContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/RevitExportGltfContext.cs -------------------------------------------------------------------------------- /RevitExportGltf/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/Util.cs -------------------------------------------------------------------------------- /RevitExportGltf/WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/WPF/MainWindow.xaml -------------------------------------------------------------------------------- /RevitExportGltf/WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /RevitExportGltf/bin/Dotfuscator1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/bin/Dotfuscator1.xml -------------------------------------------------------------------------------- /RevitExportGltf/glTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/glTF.cs -------------------------------------------------------------------------------- /RevitExportGltf/libs/Revit2018/RevitAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/libs/Revit2018/RevitAPI.dll -------------------------------------------------------------------------------- /RevitExportGltf/libs/Revit2018/RevitAPIUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/libs/Revit2018/RevitAPIUI.dll -------------------------------------------------------------------------------- /RevitExportGltf/libs/Revit2018/UIFrameworkServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/libs/Revit2018/UIFrameworkServices.dll -------------------------------------------------------------------------------- /RevitExportGltf/libs/SharpGLTF/SharpGLTF.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/libs/SharpGLTF/SharpGLTF.Core.dll -------------------------------------------------------------------------------- /RevitExportGltf/libs/SharpGLTF/SharpGLTF.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/libs/SharpGLTF/SharpGLTF.Toolkit.dll -------------------------------------------------------------------------------- /RevitExportGltf/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltf/packages.config -------------------------------------------------------------------------------- /RevitExportGltfContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/RevitExportGltfContext.cs -------------------------------------------------------------------------------- /Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/Util.cs -------------------------------------------------------------------------------- /WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/WPF/MainWindow.xaml -------------------------------------------------------------------------------- /WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /glTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/glTF.cs -------------------------------------------------------------------------------- /libs/Revit2018/RevitAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/libs/Revit2018/RevitAPI.dll -------------------------------------------------------------------------------- /libs/Revit2018/RevitAPIUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/libs/Revit2018/RevitAPIUI.dll -------------------------------------------------------------------------------- /libs/Revit2018/UIFrameworkServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/libs/Revit2018/UIFrameworkServices.dll -------------------------------------------------------------------------------- /libs/Revit2020/RevitAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/libs/Revit2020/RevitAPI.dll -------------------------------------------------------------------------------- /libs/Revit2020/RevitAPIUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/libs/Revit2020/RevitAPIUI.dll -------------------------------------------------------------------------------- /libs/Revit2020/UIFrameworkServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/libs/Revit2020/UIFrameworkServices.dll -------------------------------------------------------------------------------- /libs/SharpGLTF/SharpGLTF.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/libs/SharpGLTF/SharpGLTF.Core.dll -------------------------------------------------------------------------------- /libs/SharpGLTF/SharpGLTF.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/libs/SharpGLTF/SharpGLTF.Toolkit.dll -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages.config -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/Newtonsoft.Json.13.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/Newtonsoft.Json.13.0.1.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyu666/RevitExportGltf/HEAD/packages/Newtonsoft.Json.13.0.1/packageIcon.png --------------------------------------------------------------------------------