BabylonExport.Entities.csproj 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" 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>{6150965A-658C-4263-89AD-4F980EB0675D}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>BabylonExport.Entities</RootNamespace>
  11. <AssemblyName>BabylonExport.Entities</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SccProjectName>SAK</SccProjectName>
  15. <SccLocalPath>SAK</SccLocalPath>
  16. <SccAuxPath>SAK</SccAuxPath>
  17. <SccProvider>SAK</SccProvider>
  18. <TargetFrameworkProfile />
  19. <NuGetPackageImportStamp>a3421fc4</NuGetPackageImportStamp>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>bin\Debug\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="SharpDX">
  40. <HintPath>$(SharpDXPackageBinDir)\SharpDX.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Drawing" />
  45. <Reference Include="System.Runtime.Serialization" />
  46. <Reference Include="System.Windows.Forms" />
  47. <Reference Include="System.Xml.Linq" />
  48. <Reference Include="System.Data.DataSetExtensions" />
  49. <Reference Include="Microsoft.CSharp" />
  50. <Reference Include="System.Data" />
  51. <Reference Include="System.Xml" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Compile Include="BabylonAnimation.cs" />
  55. <Compile Include="BabylonAnimationKey.cs" />
  56. <Compile Include="BabylonBone.cs" />
  57. <Compile Include="BabylonCamera.cs" />
  58. <Compile Include="BabylonFresnelParameters.cs" />
  59. <Compile Include="BabylonLensFlare.cs" />
  60. <Compile Include="BabylonLensFlareSystem.cs" />
  61. <Compile Include="BabylonLight.cs" />
  62. <Compile Include="BabylonMaterial.cs" />
  63. <Compile Include="BabylonAbstractMesh.cs" />
  64. <Compile Include="BabylonMesh.cs" />
  65. <Compile Include="BabylonMultiMaterial.cs" />
  66. <Compile Include="BabylonParticleSystem.cs" />
  67. <Compile Include="BabylonScene.cs" />
  68. <Compile Include="BabylonShadowGenerator.cs" />
  69. <Compile Include="BabylonSkeleton.cs" />
  70. <Compile Include="BabylonSubMesh.cs" />
  71. <Compile Include="BabylonTexture.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <None Include="packages.config" />
  76. </ItemGroup>
  77. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  78. <Import Project="..\packages\SharpDX.2.6.3\build\SharpDX.targets" Condition="Exists('..\packages\SharpDX.2.6.3\build\SharpDX.targets')" />
  79. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  80. <PropertyGroup>
  81. <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
  82. </PropertyGroup>
  83. <Error Condition="!Exists('..\packages\SharpDX.2.6.3\build\SharpDX.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\SharpDX.2.6.3\build\SharpDX.targets'))" />
  84. </Target>
  85. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  86. Other similar extension points exist, see Microsoft.Common.targets.
  87. <Target Name="BeforeBuild">
  88. </Target>
  89. <Target Name="AfterBuild">
  90. </Target>
  91. -->
  92. </Project>