ExportStart.csproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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>{003C65AE-6802-4142-97FE-611C23E3676D}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>ExportStart</RootNamespace>
  10. <AssemblyName>ExportStart</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>x64</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\OutputDll\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>..\OutputDll\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  36. <PlatformTarget>x64</PlatformTarget>
  37. <OutputPath>bin\x64\Debug\</OutputPath>
  38. </PropertyGroup>
  39. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  40. <PlatformTarget>x64</PlatformTarget>
  41. <OutputPath>bin\x64\Release\</OutputPath>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="RevitAPI">
  45. <HintPath>..\Dlls\RevitAPI.dll</HintPath>
  46. <Private>False</Private>
  47. </Reference>
  48. <Reference Include="RevitNET">
  49. <HintPath>..\Dlls\RevitNET.dll</HintPath>
  50. </Reference>
  51. <Reference Include="SAGA.DotNetUtils, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  52. <SpecificVersion>False</SpecificVersion>
  53. <HintPath>..\Dlls\SAGA.DotNetUtils.dll</HintPath>
  54. </Reference>
  55. <Reference Include="System" />
  56. <Reference Include="System.Core" />
  57. <Reference Include="System.Xml.Linq" />
  58. <Reference Include="System.Data.DataSetExtensions" />
  59. <Reference Include="Microsoft.CSharp" />
  60. <Reference Include="System.Data" />
  61. <Reference Include="System.Net.Http" />
  62. <Reference Include="System.Xml" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Compile Include="DocumentExtension.cs" />
  66. <Compile Include="Program.cs" />
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. <Compile Include="RevitCoreContext.cs" />
  69. <Compile Include="RevitUtils.cs" />
  70. <Compile Include="StarterConst.cs" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <None Include="App.config" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <ProjectReference Include="..\RevitToJBim\RevitToJBim.csproj">
  77. <Project>{f83397d2-c35a-4f5c-8daf-e9de1e2d2ad5}</Project>
  78. <Name>RevitToJBim</Name>
  79. </ProjectReference>
  80. <ProjectReference Include="..\ServiceDataCheck\ServiceDataCheck.csproj">
  81. <Project>{7b748b09-dc20-4406-85a3-101e7833f8ce}</Project>
  82. <Name>ServiceDataCheck</Name>
  83. </ProjectReference>
  84. </ItemGroup>
  85. <ItemGroup>
  86. <Content Include="ReadMe.txt" />
  87. </ItemGroup>
  88. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  89. </Project>