-
Notifications
You must be signed in to change notification settings - Fork 17
/
IfcSharpLibrary.csproj
85 lines (85 loc) · 3.44 KB
/
IfcSharpLibrary.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<!--SCHEMA-->
<PropertyGroup>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkProfile />
<ProjectGuid>{1B536DBB-2CDD-4B46-8358-C3137152B82A}</ProjectGuid>
</PropertyGroup>
<PropertyGroup>
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>ifc</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Compile Include="IfcSchema\ifc_IFC4_generated_entity.cs" />
<Compile Include="IfcSchema\ifc_IFC4_generated_enum.cs" />
<Compile Include="IfcSchema\ifc_IFC4_generated_select.cs" />
<Compile Include="IfcSchema\ifc_IFC4_generated_type.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<!--CORE-->
<ItemGroup>
<Compile Include="IfcSharpCore\ifc_base.cs" />
<Compile Include="IfcSharpCore\ifc_base_sql.cs" />
<Compile Include="IfcSharpCore\ifc_header.cs" />
<Compile Include="IfcSharpCore\ifc_model.cs" />
<Compile Include="IfcSharpCore\ifc_schema.cs" />
<Compile Include="IfcSharpCore\ifc_encoding.cs" />
<Compile Include="IfcSharpCore\ifc_sort.cs" />
<Compile Include="IfcSharpCore\ifc_base_list.cs" />
<Compile Include="IfcSharpCore\ifc_base_type.cs" />
<Compile Include="IfcSharpCore\ifc_base_entity.cs" />
<Compile Include="IfcSharpCore\ifc_base_select.cs" />
<Compile Include="IfcSharpCore\Ifc_guid.cs" />
<Compile Include="IfcSharpCore\ifc_base_units.cs" />
<Compile Include="IfcSharpCore\ifc_base_geometry.cs" />
<Compile Include="IfcSharpCore\ifc_logging.cs" />
</ItemGroup>
<!--SQL-->
<ItemGroup>
<Compile Include="IfcIO\IfcSql\ifcSQL_for_ifcSQL_Instance.cs" />
<Compile Include="IfcIO\IfcSql\ifcSQL_db_interface.cs" />
<Compile Include="IfcIO\IfcSql\ifc_out_sql.cs" />
<Compile Include="IfcIO\IfcSql\ifc_in_sql.cs" />
</ItemGroup>
<!-- SQLITE -->
<!-- <PropertyGroup> -->
<!-- <ReferencePath>.\thirdparty\</ReferencePath> -->
<!-- </PropertyGroup> -->
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<!--STEP -->
<ItemGroup>
<Compile Include="IfcIO\IfcStep\ifc_in_step.cs" />
<Compile Include="IfcIO\IfcStep\ifc_out_step.cs" />
<Compile Include="IfcIO\ifc_out_html.cs" />
<Compile Include="IfcIO\ifc_out_cs.cs" />
</ItemGroup>
<!--XML -->
<ItemGroup>
<Compile Include="IfcIO\IfcXml\ifc_out_Xml.cs" />
<Compile Include="IfcIO\IfcXml\ifc_in_xml.cs" />
</ItemGroup>
</Project>