123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{6150965A-658C-4263-89AD-4F980EB0675D}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>BabylonExport.Entities</RootNamespace>
- <AssemblyName>BabylonExport.Entities</AssemblyName>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <SccProjectName>SAK</SccProjectName>
- <SccLocalPath>SAK</SccLocalPath>
- <SccAuxPath>SAK</SccAuxPath>
- <SccProvider>SAK</SccProvider>
- <TargetFrameworkProfile>
- </TargetFrameworkProfile>
- <NuGetPackageImportStamp>
- </NuGetPackageImportStamp>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <Prefer32Bit>false</Prefer32Bit>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <Prefer32Bit>false</Prefer32Bit>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="SharpDX">
- <HintPath>$(SharpDXPackageBinDir)\SharpDX.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Drawing" />
- <Reference Include="System.Runtime.Serialization" />
- <Reference Include="System.Windows.Forms" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="BabylonActions.cs" />
- <Compile Include="BabylonAnimation.cs" />
- <Compile Include="BabylonMorphTarget.cs" />
- <Compile Include="BabylonMorphTargetManager.cs" />
- <Compile Include="BabylonPBRMetallicRoughnessMaterial.cs" />
- <Compile Include="BabylonAnimationKey.cs" />
- <Compile Include="BabylonBone.cs" />
- <Compile Include="BabylonCamera.cs" />
- <Compile Include="BabylonDirectionalLight.cs" />
- <Compile Include="BabylonFresnelParameters.cs" />
- <Compile Include="BabylonHDRCubeTexture.cs" />
- <Compile Include="BabylonIAnimatable.cs" />
- <Compile Include="BabylonLensFlare.cs" />
- <Compile Include="BabylonLensFlareSystem.cs" />
- <Compile Include="BabylonLight.cs" />
- <Compile Include="BabylonMaterial.cs" />
- <Compile Include="BabylonNode.cs" />
- <Compile Include="BabylonPBRMaterial.cs" />
- <Compile Include="BabylonMatrix.cs" />
- <Compile Include="BabylonShaderMaterial.cs" />
- <Compile Include="BabylonColor3.cs" />
- <Compile Include="BabylonStandardMaterial.cs" />
- <Compile Include="BabylonAbstractMesh.cs" />
- <Compile Include="BabylonMesh.cs" />
- <Compile Include="BabylonMultiMaterial.cs" />
- <Compile Include="BabylonParticleSystem.cs" />
- <Compile Include="BabylonProducer.cs" />
- <Compile Include="BabylonScene.cs" />
- <Compile Include="BabylonShadowGenerator.cs" />
- <Compile Include="BabylonSkeleton.cs" />
- <Compile Include="BabylonSound.cs" />
- <Compile Include="BabylonSubMesh.cs" />
- <Compile Include="BabylonTexture.cs" />
- <Compile Include="BabylonQuaternion.cs" />
- <Compile Include="BabylonUniversalCamera.cs" />
- <Compile Include="BabylonVector3.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Include="packages.config" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!--
- <Import Project=".\packages\SharpDX.2.6.3\build\SharpDX.targets" Condition="Exists('.\packages\SharpDX.2.6.3\build\SharpDX.targets')" />
- <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
- <PropertyGroup>
- <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
- </PropertyGroup>
- <Error Condition="!Exists('.\packages\SharpDX.2.6.3\build\SharpDX.targets')" Text="$([System.String]::Format('$(ErrorText)', '.\packages\SharpDX.2.6.3\build\SharpDX.targets'))" />
- </Target> -->
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|