| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <ProjectGuid>{EF8F598D-9F68-44B1-9DD1-BEF79E088CF9}</ProjectGuid>
- <ProjectTypeGuids>{6D335F3A-9D43-41b4-9D22-F6F17C4BE596};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <OutputType>WinExe</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>XnaGraphicsDemo</RootNamespace>
- <AssemblyName>XnaGraphicsDemo</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- <TargetFrameworkProfile>Client</TargetFrameworkProfile>
- <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
- <XnaPlatform>Windows</XnaPlatform>
- <XnaProfile>Reach</XnaProfile>
- <XnaCrossPlatformGroupID>2c0a54c1-9a32-4765-8a0a-c9dd328bf889</XnaCrossPlatformGroupID>
- <XnaOutputType>Game</XnaOutputType>
- <ApplicationIcon>Game.ico</ApplicationIcon>
- <Thumbnail>GameThumbnail.png</Thumbnail>
- </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>
- </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>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="AlphaDemo.cs" />
- <Compile Include="BasicDemo.cs" />
- <Compile Include="DualDemo.cs" />
- <Compile Include="EnvmapDemo.cs" />
- <Compile Include="MenuComponent.cs" />
- <Compile Include="MenuEntry.cs" />
- <Compile Include="ParticleDemo.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="SkinnedDemo.cs" />
- <Compile Include="Sky.cs" />
- <Compile Include="Tank.cs" />
- <Compile Include="TitleMenu.cs" />
- <None Include="Properties\AppManifest.xml" />
- <None Include="Properties\WindowsPhoneManifest.xml" />
- <Compile Include="Program.cs" />
- <Compile Include="DemoGame.cs" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Game.ico" />
- <Content Include="GameThumbnail.png">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <None Include="App.config" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
- <Reference Include="Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
- <Reference Include="Microsoft.Xna.Framework.GamerServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=MSIL" />
- <Reference Include="Microsoft.Xna.Framework.Graphics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
- <Reference Include="Microsoft.Xna.Framework.Input.Touch, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=MSIL" />
- <Reference Include="mscorlib">
- <Private>False</Private>
- </Reference>
- <Reference Include="System">
- <Private>False</Private>
- </Reference>
- <Reference Include="System.Core">
- <Private>False</Private>
- </Reference>
- <Reference Include="System.Xml">
- <Private>False</Private>
- </Reference>
- <Reference Include="System.Xml.Linq">
- <Private>False</Private>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\DataTypes\DataTypes %28Windows%29.csproj">
- <Project>{24A0BCFD-3B8C-4AC3-AE75-E50D2F7B8C79}</Project>
- <Name>DataTypes %28Windows%29</Name>
- </ProjectReference>
- <ProjectReference Include="..\XnaGraphicsDemoContent\ReachGraphicsDemoContent.contentproj">
- <Project>{C09C6D8E-12BF-4913-ACF6-5E35FDD1BD9F}</Project>
- <Name>ReachGraphicsDemoContent %28Content%29</Name>
- <XnaReferenceType>Content</XnaReferenceType>
- </ProjectReference>
- </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>
|