1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <ProjectGuid>{1BD2DBC0-D366-42F7-9369-F566CCD01C03}</ProjectGuid>
- <ProjectTypeGuids>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>nkast.Aether.Animation</RootNamespace>
- <AssemblyName>Aether.Animation</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
- <XnaPlatform>Windows</XnaPlatform>
- <XnaProfile>Reach</XnaProfile>
- <XnaCrossPlatformGroupID>55ac98f1-c123-4838-ac90-fb4285b12686</XnaCrossPlatformGroupID>
- <XnaOutputType>Library</XnaOutputType>
- <!--
- <XnaRefreshLevel>1</XnaRefreshLevel>
- -->
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\Artifacts\Debug\Libraries\net40.XNA\</OutputPath>
- <DefineConstants>TRACE;DEBUG;WINDOWS XNA</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <NoStdLib>true</NoStdLib>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <PlatformTarget>x86</PlatformTarget>
- <XnaCompressContent>false</XnaCompressContent>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
- <DebugType>none</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\Artifacts\Release\Libraries\net40.XNA\</OutputPath>
- <DefineConstants>WINDOWS XNA</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <NoStdLib>true</NoStdLib>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <PlatformTarget>x86</PlatformTarget>
- <XnaCompressContent>true</XnaCompressContent>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="mscorlib" />
- <Reference Include="System" />
- <Reference Include="System.Core">
- <Private>False</Private>
- </Reference>
- <Reference Include="Microsoft.Xna.Framework, 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\Animations.cs" />
- <Compile Include="Animation\Clip.cs" />
- <Compile Include="Animation\CpuAnimatedVertexBuffer.Unsafe.cs" />
- <Compile Include="Animation\Extensions.cs" />
- <Compile Include="Animation\Keyframe.cs" />
- <Compile Include="ContentReaders\AnimationsReader.cs" />
- <Compile Include="ContentReaders\ClipReader.cs" />
- <Compile Include="ContentReaders\CpuAnimatedVertexBufferReader.cs" />
- <Compile Include="Graphics\VertexTypes\VertexIndicesWeightsPositionNormal.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Graphics\Aether.Graphics.NET4.XNA.csproj" />
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" />
- </Project>
|