| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <ProjectGuid>{08932BB0-C3E4-489B-9A45-1649730A9CDB}</ProjectGuid>
- <ProjectTypeGuids>{6D335F3A-9D43-41b4-9D22-F6F17C4BE596};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">Windows Phone</Platform>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>tainicom.Aether.Animation</RootNamespace>
- <AssemblyName>Aether.Animation</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- <TargetFrameworkProfile>Client</TargetFrameworkProfile>
- <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
- <XnaPlatform>Windows Phone</XnaPlatform>
- <XnaProfile>Reach</XnaProfile>
- <XnaCrossPlatformGroupID>55ac98f1-c123-4838-ac90-fb4285b12686</XnaCrossPlatformGroupID>
- <XnaOutputType>Library</XnaOutputType>
- <XapFilename Condition="$(XnaOutputType)=='Game'">$(AssemblyName).xap</XapFilename>
- <SilverlightManifestTemplate Condition="$(XnaOutputType)=='Game'">Properties\AppManifest.xml</SilverlightManifestTemplate>
- <XnaWindowsPhoneManifestTemplate Condition="$(XnaOutputType)=='Game'">Properties\WMAppManifest.xml</XnaWindowsPhoneManifestTemplate>
- <TileImage Condition="$(XnaOutputType)=='Game'">Background.png</TileImage>
- <TileTitle Condition="$(XnaOutputType)=='Game'">TileTitle</TileTitle>
- <XnaRefreshLevel>1</XnaRefreshLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Windows Phone' ">
- <OutputPath>..\bin\Debug\WP7_1\</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <NoStdLib>true</NoStdLib>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>true</Optimize>
- <DefineConstants>TRACE;DEBUG;WP7_1</DefineConstants>
- <XnaCompressContent>false</XnaCompressContent>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Windows Phone' ">
- <OutputPath>..\bin\Release\WP7_1\</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <NoStdLib>true</NoStdLib>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <DebugType>none</DebugType>
- <Optimize>true</Optimize>
- <DefineConstants>TRACE;WP7</DefineConstants>
- <XnaCompressContent>false</XnaCompressContent>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Microsoft.Phone, Version=7.0.0.0, Culture=neutral, PublicKeyToken=24eec0d8c86cda1e, processorArchitecture=MSIL" />
- <Reference Include="Microsoft.Xna.Framework">
- <Private>False</Private>
- </Reference>
- <Reference Include="Microsoft.Xna.Framework.Graphics">
- <Private>False</Private>
- </Reference>
- <Reference Include="mscorlib">
- <Private>False</Private>
- </Reference>
- <Reference Include="System">
- <Private>False</Private>
- </Reference>
- <Reference Include="System.Core">
- <Private>False</Private>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Animation\Animations.cs" />
- <Compile Include="Animation\Clip.cs" />
- <Compile Include="Animation\CpuAnimatedVertexBuffer.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>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" />
- <!--
- 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>
|