RevitToJBim.csproj 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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="RevitAPI">
  35. <HintPath>..\Dlls\RevitAPI.dll</HintPath>
  36. </Reference>
  37. <Reference Include="RevitAPIUI">
  38. <HintPath>..\Dlls\RevitAPIUI.dll</HintPath>
  39. </Reference>
  40. <Reference Include="SAGA.RevitUtils">
  41. <HintPath>..\Dlls\SAGA.RevitUtils.dll</HintPath>
  42. </Reference>
  43. <Reference Include="System" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="System.Xml.Linq" />
  46. <Reference Include="System.Data.DataSetExtensions" />
  47. <Reference Include="Microsoft.CSharp" />
  48. <Reference Include="System.Data" />
  49. <Reference Include="System.Net.Http" />
  50. <Reference Include="System.Xml" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Compile Include="Common\Converter.cs" />
  54. <Compile Include="Common\ExceptionUtil.cs" />
  55. <Compile Include="Common\RevitIdGenerator.cs" />
  56. <Compile Include="ComponentParse\ParseBase.cs" />
  57. <Compile Include="ComponentParse\ParseCore.cs" />
  58. <Compile Include="ComponentParse\ParsePipe.cs" />
  59. <Compile Include="ComponentParse\ParseSpace.cs" />
  60. <Compile Include="RevitToJBimParser.cs" />
  61. <Compile Include="JBimParseContext.cs" />
  62. <Compile Include="Properties\AssemblyInfo.cs" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <ProjectReference Include="..\JBIM\JBIM.csproj">
  66. <Project>{a6a90bfe-126d-4499-860a-f0e2c40ebb23}</Project>
  67. <Name>JBIM</Name>
  68. </ProjectReference>
  69. <ProjectReference Include="..\RevitExport\RevitExport.csproj">
  70. <Project>{825b43f4-1f7b-44ac-9bd4-501de9422d32}</Project>
  71. <Name>RevitExport</Name>
  72. </ProjectReference>
  73. </ItemGroup>
  74. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  75. </Project>