12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="15.0" 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>{65686998-09AC-4A14-B23F-7FCE6BA994CF}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>GLTFExport</RootNamespace>
- <AssemblyName>GLTFExport</AssemblyName>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <TargetFrameworkProfile />
- </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>
- </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>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Runtime.Serialization" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="GLTF.cs" />
- <Compile Include="GLTFAccessor.cs" />
- <Compile Include="GLTFAnimationSampler.cs" />
- <Compile Include="GLTFAnimation.cs" />
- <Compile Include="GLTFChannelTarget.cs" />
- <Compile Include="GLTFChannel.cs" />
- <Compile Include="GLTFBufferView.cs" />
- <Compile Include="GLTFBuffer.cs" />
- <Compile Include="GLTFCameraPerspective.cs" />
- <Compile Include="GLTFCameraOrthographic.cs" />
- <Compile Include="GLTFCamera.cs" />
- <Compile Include="GLTFSkin.cs" />
- <Compile Include="GLTFMorphTarget.cs" />
- <Compile Include="GLTFSampler.cs" />
- <Compile Include="GLTFIndexedChildRootProperty.cs" />
- <Compile Include="GLTFImage.cs" />
- <Compile Include="GLTFTextureInfo.cs" />
- <Compile Include="GLTFTexture.cs" />
- <Compile Include="GLTFPBRMetallicRoughness.cs" />
- <Compile Include="GLTFMaterial.cs" />
- <Compile Include="GLTFMeshPrimitive.cs" />
- <Compile Include="GLTFMesh.cs" />
- <Compile Include="GLTFProperty.cs" />
- <Compile Include="GLTFChildRootProperty.cs" />
- <Compile Include="GLTFNode.cs" />
- <Compile Include="GLTFScene.cs" />
- <Compile Include="GLTFAsset.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- </Project>
|