EQ2ModelViewer.csproj 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{D82B7FE5-F1A5-4BEC-8D98-14DB7561C8B2}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>EQ2ModelViewer</RootNamespace>
  11. <AssemblyName>EQ2ModelViewer</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>x64</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <UseVSHostingProcess>true</UseVSHostingProcess>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="ICSharpCode.SharpZipLib">
  37. <HintPath>libeq2\bin\Debug\ICSharpCode.SharpZipLib.dll</HintPath>
  38. </Reference>
  39. <Reference Include="libeq2">
  40. <HintPath>libeq2\bin\Debug\libeq2.dll</HintPath>
  41. </Reference>
  42. <Reference Include="SlimDX, Version=4.0.13.43, Culture=neutral, PublicKeyToken=b1b0c32fd1ffe4f9, processorArchitecture=x86">
  43. <HintPath>..\packages\SlimDX.4.0.13.44\lib\NET40\SlimDX.dll</HintPath>
  44. <Private>True</Private>
  45. </Reference>
  46. <Reference Include="Spart">
  47. <HintPath>libeq2\bin\Debug\Spart.dll</HintPath>
  48. </Reference>
  49. <Reference Include="System" />
  50. <Reference Include="System.Core" />
  51. <Reference Include="System.Xml.Linq" />
  52. <Reference Include="System.Data.DataSetExtensions" />
  53. <Reference Include="Microsoft.CSharp" />
  54. <Reference Include="System.Data" />
  55. <Reference Include="System.Deployment" />
  56. <Reference Include="System.Drawing" />
  57. <Reference Include="System.Windows.Forms" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="BitmapClass.cs" />
  62. <Compile Include="CameraClass.cs" />
  63. <Compile Include="CPUClass.cs" />
  64. <Compile Include="FontClass.cs" />
  65. <Compile Include="FontShaderClass.cs" />
  66. <Compile Include="FPSClass.cs" />
  67. <Compile Include="FrustumClass.cs" />
  68. <Compile Include="GameObject.cs" />
  69. <Compile Include="GraphicClass.cs" />
  70. <Compile Include="InputClass.cs" />
  71. <Compile Include="LightShaderClass.cs" />
  72. <Compile Include="Main.cs">
  73. <SubType>Form</SubType>
  74. </Compile>
  75. <Compile Include="Main.Designer.cs">
  76. <DependentUpon>Main.cs</DependentUpon>
  77. </Compile>
  78. <Compile Include="MeshClass.cs" />
  79. <Compile Include="Model.cs" />
  80. <Compile Include="ModelManager.cs" />
  81. <Compile Include="PositionClass.cs" />
  82. <Compile Include="Program.cs" />
  83. <Compile Include="Properties\AssemblyInfo.cs" />
  84. <Compile Include="SkyBox.cs" />
  85. <Compile Include="TextClass.cs" />
  86. <Compile Include="TextureClass.cs" />
  87. <Compile Include="TextureShaderClass.cs" />
  88. <Compile Include="TimerClass.cs" />
  89. <EmbeddedResource Include="Main.resx">
  90. <DependentUpon>Main.cs</DependentUpon>
  91. </EmbeddedResource>
  92. <EmbeddedResource Include="Properties\Resources.resx">
  93. <Generator>ResXFileCodeGenerator</Generator>
  94. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  95. <SubType>Designer</SubType>
  96. </EmbeddedResource>
  97. <Compile Include="Properties\Resources.Designer.cs">
  98. <AutoGen>True</AutoGen>
  99. <DependentUpon>Resources.resx</DependentUpon>
  100. </Compile>
  101. <None Include="packages.config" />
  102. <None Include="Properties\Settings.settings">
  103. <Generator>SettingsSingleFileGenerator</Generator>
  104. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  105. </None>
  106. <Compile Include="Properties\Settings.Designer.cs">
  107. <AutoGen>True</AutoGen>
  108. <DependentUpon>Settings.settings</DependentUpon>
  109. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  110. </Compile>
  111. </ItemGroup>
  112. <ItemGroup>
  113. <None Include="App.config" />
  114. </ItemGroup>
  115. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  116. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  117. Other similar extension points exist, see Microsoft.Common.targets.
  118. <Target Name="BeforeBuild">
  119. </Target>
  120. <Target Name="AfterBuild">
  121. </Target>
  122. -->
  123. </Project>