RevitToJBim.csproj 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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.RevitUtils">
  44. <HintPath>..\Dlls\SAGA.RevitUtils.dll</HintPath>
  45. </Reference>
  46. <Reference Include="System" />
  47. <Reference Include="System.Core" />
  48. <Reference Include="System.Xml.Linq" />
  49. <Reference Include="System.Data.DataSetExtensions" />
  50. <Reference Include="Microsoft.CSharp" />
  51. <Reference Include="System.Data" />
  52. <Reference Include="System.Net.Http" />
  53. <Reference Include="System.Xml" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Compile Include="Common\Converter.cs" />
  57. <Compile Include="Common\ExceptionUtil.cs" />
  58. <Compile Include="Common\RevitIdGenerator.cs" />
  59. <Compile Include="ComponentParse\ParseBase.cs" />
  60. <Compile Include="ComponentParse\ParseConnector.cs" />
  61. <Compile Include="ComponentParse\ParseCore.cs" />
  62. <Compile Include="ComponentParse\ParseMepSystem.cs" />
  63. <Compile Include="ComponentParse\ParsePipe.cs" />
  64. <Compile Include="ComponentParse\ParseSpace.cs" />
  65. <Compile Include="ComponentParse\UsableParseAttribute.cs" />
  66. <Compile Include="JsonConverter\BimIdConverter.cs" />
  67. <Compile Include="JsonConverter\BimJsonUtil.cs" />
  68. <Compile Include="RevitToJBimParser.cs" />
  69. <Compile Include="JBimParseContext.cs" />
  70. <Compile Include="Properties\AssemblyInfo.cs" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <ProjectReference Include="..\JBIM\JBIM.csproj">
  74. <Project>{a6a90bfe-126d-4499-860a-f0e2c40ebb23}</Project>
  75. <Name>JBIM</Name>
  76. </ProjectReference>
  77. <ProjectReference Include="..\RevitExport\RevitExport.csproj">
  78. <Project>{825b43f4-1f7b-44ac-9bd4-501de9422d32}</Project>
  79. <Name>RevitExport</Name>
  80. </ProjectReference>
  81. </ItemGroup>
  82. <ItemGroup>
  83. <None Include="packages.config" />
  84. </ItemGroup>
  85. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  86. </Project>