1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
- <PropertyGroup>
- <ProjectGuid>{E22F02E7-6799-4C14-B9B3-B461D6E9AB6E}</ProjectGuid>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>nkast.Aether.Content.Pipeline</RootNamespace>
- <AssemblyName>Aether.Content.Pipeline.AnimationImporters</AssemblyName>
- <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\..\Artifacts\Debug\Processors\net4.XNA\</OutputPath>
- <DefineConstants>TRACE;DEBUG;WINDOWS XNA</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <PlatformTarget>x86</PlatformTarget>
- <XnaPlatform>Windows</XnaPlatform>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>none</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\..\Artifacts\Release\Processors\net4.XNA\</OutputPath>
- <DefineConstants>TRACE;WINDOWS XNA</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <PlatformTarget>x86</PlatformTarget>
- <XnaPlatform>Windows</XnaPlatform>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System">
- <Private>False</Private>
- </Reference>
- <Reference Include="System.Core" />
- <Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
- <Reference Include="Microsoft.Xna.Framework.Content.Pipeline, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
- <Reference Include="Microsoft.Xna.Framework.Graphics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Animation\AnimationsContent.cs" />
- <Compile Include="Animation\ClipContent.cs" />
- <Compile Include="Animation\CpuAnimatedVertexBufferContent.cs" />
- <Compile Include="Animation\KeyframeContent.cs" />
- <Compile Include="Processors\AnimationsProcessor.cs" />
- <Compile Include="Processors\CpuAnimatedModelProcessor.cs" />
- <Compile Include="Processors\GpuAnimatedModelProcessor.cs" />
- <Compile Include="Serialization\AnimationsWriter.cs" />
- <Compile Include="Serialization\ClipWriter.cs" />
- <Compile Include="Serialization\CpuAnimatedVertexBufferWriter.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\GraphicsImporters\GraphicsImporters.NET4.XNA.csproj">
- <Project>{565ACF47-7E36-435E-8727-2AFB39E61134}</Project>
- <Name>GraphicsImporters.NET4.XNA</Name>
- </ProjectReference>
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.ContentPipelineExtensions.targets" />
- </Project>
|