12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <ProjectGuid>{24A0BCFD-3B8C-4AC3-AE75-E50D2F7B8C79}</ProjectGuid>
- <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>DataTypes</RootNamespace>
- <AssemblyName>DataTypes</AssemblyName>
- <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
- <XnaPlatform>Windows</XnaPlatform>
- <XnaProfile>Reach</XnaProfile>
- <XnaCrossPlatformGroupID>a8b98efe-31a2-4f80-b8af-ce65dacb7d38</XnaCrossPlatformGroupID>
- <XnaOutputType>Library</XnaOutputType>
- <ProductVersion>10.0.0</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <OutputPath>bin\x86\Debug</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <NoStdLib>True</NoStdLib>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <PlatformTarget>x86</PlatformTarget>
- <DebugSymbols>True</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>False</Optimize>
- <DefineConstants>DEBUG;TRACE;WINDOWS</DefineConstants>
- <XnaCompressContent>false</XnaCompressContent>
- <EnableCodeSigning>False</EnableCodeSigning>
- <CreatePackage>False</CreatePackage>
- <EnablePackageSigning>False</EnablePackageSigning>
- <IncludeMonoRuntime>False</IncludeMonoRuntime>
- <UseSGen>False</UseSGen>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
- <OutputPath>bin\x86\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <NoStdLib>True</NoStdLib>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <PlatformTarget>x86</PlatformTarget>
- <DebugType>pdbonly</DebugType>
- <Optimize>True</Optimize>
- <DefineConstants>TRACE;WINDOWS</DefineConstants>
- <XnaCompressContent>true</XnaCompressContent>
- <EnableCodeSigning>False</EnableCodeSigning>
- <CreatePackage>False</CreatePackage>
- <EnablePackageSigning>False</EnablePackageSigning>
- <IncludeMonoRuntime>False</IncludeMonoRuntime>
- <UseSGen>False</UseSGen>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="AnimationClip.cs" />
- <Compile Include="AnimationPlayer.cs" />
- <Compile Include="Keyframe.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="SkinningData.cs" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="mscorlib" />
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml" />
- <Reference Include="System.Xml.Linq" />
- </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>
|