-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathXbim.Exchanger.csproj
58 lines (58 loc) · 2.58 KB
/
Xbim.Exchanger.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472</TargetFrameworks>
<Title>Xbim.Exchanger</Title>
<Description>
xBIM Exchanger is a library enabling file exchange between IFC and COBie, COBieLite[UK] and DPoW
Supports multiple serialisation formats, including XML, JSON, STEP and native Excel / xslx.
</Description>
<AssemblyName>XbimExchanger</AssemblyName>
<RootNamespace>XbimExchanger</RootNamespace>
<PackageId>Xbim.Exchanger</PackageId>
<PackageIcon>Icon.png</PackageIcon>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Remove="DPoWToCOBieLite\ClassificationMappings.config" />
<None Remove="IfcToCOBieExpress\COBieAttributes.config" />
<None Remove="IfcToCOBieLiteUK\COBieAttributes.config" />
<None Remove="Uniclass2015_Ac_v0_1.csv" />
<None Remove="Uniclass2015_Pr_v1_1.csv" />
<None Remove="Uniclass2015_Ss_v1_1.csv" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="DPoWToCOBieLite\ClassificationMappings.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="IfcToCOBieExpress\COBieAttributes.config" />
<EmbeddedResource Include="IfcToCOBieLiteUK\COBieAttributes.config" />
</ItemGroup>
<ItemGroup>
<None Include="..\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.1.1" />
<PackageReference Include="Xbim.Essentials" Version="5.1.341" />
<PackageReference Include="Xbim.IO.CobieExpress" Version="5.1.154" />
<PackageReference Include="Xbim.PropertySets" Version="4.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Xbim.COBieLiteUK\Xbim.COBieLiteUK.csproj" />
<ProjectReference Include="..\Xbim.COBieLite\Xbim.COBieLite.csproj" />
<ProjectReference Include="..\Xbim.DPoW\Xbim.DPoW.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="IfcToCOBieExpress\Classifications\DataFiles\Uniclass2015_Ac_v0_1.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="IfcToCOBieExpress\Classifications\DataFiles\Uniclass2015_Pr_v1_1.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="IfcToCOBieExpress\Classifications\DataFiles\Uniclass2015_Ss_v1_1.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>