-
Notifications
You must be signed in to change notification settings - Fork 175
/
Xbim.Essentials.tmpl
73 lines (73 loc) · 3.63 KB
/
Xbim.Essentials.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>Xbim.Essentials</id>
<version>{{version}}</version>
<title>xBIM Essentials</title>
<authors>xBIM Team</authors>
<owners>Steve Lockley, Martin Cerny and XBIM Contributors</owners>
<licenseUrl>https://raw.githubusercontent.com/xBimTeam/XbimEssentials/master/LICENCE.md</licenseUrl>
<projectUrl>https://github.com/xBimTeam/</projectUrl>
<iconUrl>https://avatars1.githubusercontent.com/u/2284875?v=3&s=240</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>
xBIM Essentials provides support for IFC2x2, IFC2x3, IFC4 Addendum 2 and IFC Alignment (IFC4x1).
xBIM can open, create or modify any IFC file format, including XML, STEP21 and IFCZIP formats.
All programmatic access to IFC Entities is through a single interface, allowing one code base to work with all IFC formats and schemas.
Ifc4 is the default interface future proofing your development work.
</description>
<summary>The main package for xBIM toolkit base libraries for working with IFC data.</summary>
<releaseNotes>
Support for Net6.0 and netstandard2.1 added
Support for Ifc4.3 TC1 schema
Support for Managed Esent under netcore (Windows only still) - Esent now included as core again
Updated to be Dependency Injection friendly
</releaseNotes>
<language>en-GB</language>
<tags>BIM IFC IfcXml IfcZip Ifc4 COBie .Net XBIM WexBIM BuildingSmart</tags>
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="Xbim.Common" version="{{version}}" />
<dependency id="Xbim.Ifc4" version="{{version}}" />
<dependency id="Xbim.Ifc2x3" version="{{version}}" />
<dependency id="Xbim.Ifc4x3" version="{{version}}" />
<dependency id="Xbim.IO.Esent" version="{{version}}" />
<dependency id="Xbim.IO.MemoryModel" version="{{version}}" />
<dependency id="Xbim.Ifc" version="{{version}}" />
<dependency id="Xbim.Tessellator" version="{{version}}" />
</group>
<group targetFramework="netstandard2.1">
<dependency id="Xbim.Common" version="{{version}}" />
<dependency id="Xbim.Ifc" version="{{version}}" />
<dependency id="Xbim.Ifc4" version="{{version}}" />
<dependency id="Xbim.Ifc2x3" version="{{version}}" />
<dependency id="Xbim.Ifc4x3" version="{{version}}" />
<dependency id="Xbim.IO.Esent" version="{{version}}" />
<dependency id="Xbim.IO.MemoryModel" version="{{version}}" />
<dependency id="Xbim.Tessellator" version="{{version}}" />
</group>
<group targetFramework="net6.0">
<dependency id="Xbim.Common" version="{{version}}" />
<dependency id="Xbim.Ifc" version="{{version}}" />
<dependency id="Xbim.Ifc4" version="{{version}}" />
<dependency id="Xbim.Ifc2x3" version="{{version}}" />
<dependency id="Xbim.Ifc4x3" version="{{version}}" />
<dependency id="Xbim.IO.Esent" version="{{version}}" />
<dependency id="Xbim.IO.MemoryModel" version="{{version}}" />
<dependency id="Xbim.Tessellator" version="{{version}}" />
</group>
<group targetFramework="net8.0">
<dependency id="Xbim.Common" version="{{version}}" />
<dependency id="Xbim.Ifc" version="{{version}}" />
<dependency id="Xbim.Ifc4" version="{{version}}" />
<dependency id="Xbim.Ifc2x3" version="{{version}}" />
<dependency id="Xbim.Ifc4x3" version="{{version}}" />
<dependency id="Xbim.IO.Esent" version="{{version}}" />
<dependency id="Xbim.IO.MemoryModel" version="{{version}}" />
<dependency id="Xbim.Tessellator" version="{{version}}" />
</group>
</dependencies>
</metadata>
<files>
</files>
</package>