-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRevitGltfExporter.csproj
114 lines (114 loc) · 5.53 KB
/
RevitGltfExporter.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{13B4AD15-75FB-4435-BF16-685A7BFC939B}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>RevitGltfExporter</RootNamespace>
<AssemblyName>RevitGltfExporter</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;REVIT2018</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;REVIT2018</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="AdWindows, Version=2016.11.4.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\Revit_All_Main_Versions_API_x64.2018.0.2\lib\net46\AdWindows.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<Private>False</Private>
</Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="RevitAPI, Version=18.0.0.0, Culture=neutral, processorArchitecture=AMD64">
<HintPath>packages\Revit_All_Main_Versions_API_x64.2018.0.2\lib\net46\RevitAPI.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<Private>False</Private>
</Reference>
<Reference Include="RevitAPIUI, Version=18.0.0.0, Culture=neutral, processorArchitecture=AMD64">
<HintPath>packages\Revit_All_Main_Versions_API_x64.2018.0.2\lib\net46\RevitAPIUI.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Windows.Forms" />
<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" />
<Reference Include="UIFramework, Version=18.0.0.0, Culture=neutral, processorArchitecture=AMD64">
<HintPath>packages\Revit_All_Main_Versions_API_x64.2018.0.2\lib\net46\UIFramework.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Accessor.cs" />
<Compile Include="AssetSchemas\AssetSchema.cs" />
<Compile Include="AssetSchemas\CeramicSchema.cs" />
<Compile Include="AssetSchemas\ConcreteSchema.cs" />
<Compile Include="AssetSchemas\DecalAppearanceSchema.cs" />
<Compile Include="AssetSchemas\GenericSchema.cs" />
<Compile Include="AssetSchemas\GlazingSchema.cs" />
<Compile Include="AssetSchemas\HardwoodSchema.cs" />
<Compile Include="AssetSchemas\MasonryCMUSchema.cs" />
<Compile Include="AssetSchemas\MetallicPaintSchema.cs" />
<Compile Include="AssetSchemas\MetalSchema.cs" />
<Compile Include="AssetSchemas\MirrorSchema.cs" />
<Compile Include="AssetSchemas\PlasticVinylSchema.cs" />
<Compile Include="AssetSchemas\PrismLayeredSchema.cs" />
<Compile Include="AssetSchemas\PrismMetalSchema.cs" />
<Compile Include="AssetSchemas\PrismOpaqueSchema.cs" />
<Compile Include="AssetSchemas\PrismTransparentSchema.cs" />
<Compile Include="AssetSchemas\SolidGlassSchema.cs" />
<Compile Include="AssetSchemas\StoneSchema.cs" />
<Compile Include="AssetSchemas\WallPaintSchema.cs" />
<Compile Include="AssetSchemas\WaterSchema.cs" />
<Compile Include="BufferView.cs" />
<Compile Include="Camera.cs" />
<Compile Include="Command.cs" />
<Compile Include="ElementsMap.cs" />
<Compile Include="ElementsSet.cs" />
<Compile Include="ExportContext.cs" />
<Compile Include="Geometry.cs" />
<Compile Include="Gltf.cs" />
<Compile Include="InterfaceContractResolver.cs" />
<Compile Include="MaterialExporter.cs" />
<Compile Include="Mesh.cs" />
<Compile Include="MetadataExporter.cs" />
<Compile Include="Node.cs" />
<Compile Include="PbrMaterial.cs" />
<Compile Include="Primitive.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RenderingMaterial.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>