RevitToJBim.csproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{F83397D2-C35A-4F5C-8DAF-E9DE1E2D2AD5}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>RevitToJBim</RootNamespace>
  11. <AssemblyName>RevitToJBim</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  35. <HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
  36. </Reference>
  37. <Reference Include="RevitAPI">
  38. <HintPath>..\Dlls\RevitAPI.dll</HintPath>
  39. </Reference>
  40. <Reference Include="RevitAPIUI">
  41. <HintPath>..\Dlls\RevitAPIUI.dll</HintPath>
  42. </Reference>
  43. <Reference Include="SAGA.DotNetUtils">
  44. <HintPath>..\Dlls\SAGA.DotNetUtils.dll</HintPath>
  45. </Reference>
  46. <Reference Include="SAGA.RevitAPI">
  47. <HintPath>..\Dlls\SAGA.RevitAPI.dll</HintPath>
  48. </Reference>
  49. <Reference Include="SAGA.RevitUtils">
  50. <HintPath>..\Dlls\SAGA.RevitUtils.dll</HintPath>
  51. </Reference>
  52. <Reference Include="System" />
  53. <Reference Include="System.Core" />
  54. <Reference Include="System.Xml.Linq" />
  55. <Reference Include="System.Data.DataSetExtensions" />
  56. <Reference Include="Microsoft.CSharp" />
  57. <Reference Include="System.Data" />
  58. <Reference Include="System.Net.Http" />
  59. <Reference Include="System.Xml" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Compile Include="Common\Converter.cs" />
  63. <Compile Include="Common\ExceptionUtil.cs" />
  64. <Compile Include="Common\RevitIdGenerator.cs" />
  65. <Compile Include="ComponentParse\ParseBase.cs" />
  66. <Compile Include="ComponentParse\ParseConnector.cs" />
  67. <Compile Include="ComponentParse\ParseCore.cs" />
  68. <Compile Include="ComponentParse\ParseDuct.cs" />
  69. <Compile Include="ComponentParse\ParseMepSystem.cs" />
  70. <Compile Include="ComponentParse\ParsePipe.cs" />
  71. <Compile Include="ComponentParse\ParseSpace.cs" />
  72. <Compile Include="ComponentParse\UsableParseAttribute.cs" />
  73. <Compile Include="JsonConverter\BimIdConverter.cs" />
  74. <Compile Include="JsonConverter\BimJsonUtil.cs" />
  75. <Compile Include="JsonConverter\XYZConverter.cs" />
  76. <Compile Include="ParseData\ElementRelationShip.cs" />
  77. <Compile Include="ParseData\ElementOneToManyRel.cs" />
  78. <Compile Include="ParseData\ElementOneToOneRel.cs" />
  79. <Compile Include="RevitToJBimParser.cs" />
  80. <Compile Include="JBimParseContext.cs" />
  81. <Compile Include="Properties\AssemblyInfo.cs" />
  82. <Compile Include="TestExport.cs" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <ProjectReference Include="..\JBIM\JBIM.csproj">
  86. <Project>{a6a90bfe-126d-4499-860a-f0e2c40ebb23}</Project>
  87. <Name>JBIM</Name>
  88. </ProjectReference>
  89. <ProjectReference Include="..\RevitExport\RevitExport.csproj">
  90. <Project>{825b43f4-1f7b-44ac-9bd4-501de9422d32}</Project>
  91. <Name>RevitExport</Name>
  92. </ProjectReference>
  93. </ItemGroup>
  94. <ItemGroup>
  95. <None Include="packages.config" />
  96. </ItemGroup>
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. </Project>