SceneDataPipeline.csproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <ProjectGuid>{6CD6CE4A-411C-4D58-94B9-35682930F293}</ProjectGuid>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <OutputType>Library</OutputType>
  7. <AppDesignerFolder>Properties</AppDesignerFolder>
  8. <RootNamespace>SceneDataPipeline</RootNamespace>
  9. <AssemblyName>SceneDataPipeline</AssemblyName>
  10. <XnaFrameworkVersion>v2.0</XnaFrameworkVersion>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  13. <DebugSymbols>true</DebugSymbols>
  14. <DebugType>full</DebugType>
  15. <Optimize>false</Optimize>
  16. <OutputPath>bin\x86\Debug</OutputPath>
  17. <DefineConstants>DEBUG;TRACE</DefineConstants>
  18. <ErrorReport>prompt</ErrorReport>
  19. <WarningLevel>4</WarningLevel>
  20. <PlatformTarget>x86</PlatformTarget>
  21. <XnaPlatform>Windows</XnaPlatform>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  24. <DebugType>pdbonly</DebugType>
  25. <Optimize>true</Optimize>
  26. <OutputPath>bin\x86\Release</OutputPath>
  27. <DefineConstants>TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <PlatformTarget>x86</PlatformTarget>
  31. <XnaPlatform>Windows</XnaPlatform>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Xbox 360' ">
  34. <DebugSymbols>true</DebugSymbols>
  35. <DebugType>full</DebugType>
  36. <Optimize>false</Optimize>
  37. <OutputPath>bin\Xbox 360\Debug</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. <UseVSHostingProcess>false</UseVSHostingProcess>
  42. <PlatformTarget>x86</PlatformTarget>
  43. <XnaPlatform>Xbox 360</XnaPlatform>
  44. </PropertyGroup>
  45. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Xbox 360' ">
  46. <DebugType>pdbonly</DebugType>
  47. <Optimize>true</Optimize>
  48. <OutputPath>bin\Xbox 360\Release</OutputPath>
  49. <DefineConstants>TRACE</DefineConstants>
  50. <ErrorReport>prompt</ErrorReport>
  51. <WarningLevel>4</WarningLevel>
  52. <UseVSHostingProcess>false</UseVSHostingProcess>
  53. <PlatformTarget>x86</PlatformTarget>
  54. <XnaPlatform>Xbox 360</XnaPlatform>
  55. </PropertyGroup>
  56. <ItemGroup>
  57. <Reference Include="Microsoft.Xna.Framework, Version=2.0.0.0, Culture=neutral, PublicKeyToken=6d5c3888ef60e27d, processorArchitecture=x86">
  58. <Private>False</Private>
  59. <SpecificVersion>True</SpecificVersion>
  60. </Reference>
  61. <Reference Include="Microsoft.Xna.Framework.Game, Version=2.0.0.0, Culture=neutral, PublicKeyToken=6d5c3888ef60e27d, processorArchitecture=MSIL">
  62. <Private>False</Private>
  63. <SpecificVersion>True</SpecificVersion>
  64. </Reference>
  65. <Reference Include="Microsoft.Xna.Framework.Content.Pipeline, Version=2.0.0.0, Culture=neutral, PublicKeyToken=6d5c3888ef60e27d, processorArchitecture=x86">
  66. <Private>False</Private>
  67. <SpecificVersion>true</SpecificVersion>
  68. </Reference>
  69. <Reference Include="System">
  70. <Private>False</Private>
  71. </Reference>
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Compile Include="SceneDataWriter.cs" />
  75. <Compile Include="Properties\AssemblyInfo.cs" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <ProjectReference Include="..\SceneData\SceneDataWindows.csproj">
  79. <Project>{9CB28F20-9399-452F-B540-18D2FEFCCB89}</Project>
  80. <Name>SceneDataWindows</Name>
  81. </ProjectReference>
  82. </ItemGroup>
  83. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  84. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  85. Other similar extension points exist, see Microsoft.Common.targets.
  86. <Target Name="BeforeBuild">
  87. </Target>
  88. <Target Name="AfterBuild">
  89. </Target>
  90. -->
  91. </Project>