PAK Extractor.csproj 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{F56FF8B2-F9BD-45CB-9539-9F169855A72F}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>PAK_Extractor</RootNamespace>
  10. <AssemblyName>PAK Extractor</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. <IsWebBootstrapper>false</IsWebBootstrapper>
  16. <PublishUrl>publish\</PublishUrl>
  17. <Install>true</Install>
  18. <InstallFrom>Disk</InstallFrom>
  19. <UpdateEnabled>false</UpdateEnabled>
  20. <UpdateMode>Foreground</UpdateMode>
  21. <UpdateInterval>7</UpdateInterval>
  22. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  23. <UpdatePeriodically>false</UpdatePeriodically>
  24. <UpdateRequired>false</UpdateRequired>
  25. <MapFileExtensions>true</MapFileExtensions>
  26. <ProductName>PAK Extractor</ProductName>
  27. <DisallowUrlActivation>true</DisallowUrlActivation>
  28. <ApplicationRevision>1</ApplicationRevision>
  29. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  30. <UseApplicationTrust>false</UseApplicationTrust>
  31. <PublishWizardCompleted>true</PublishWizardCompleted>
  32. <BootstrapperEnabled>true</BootstrapperEnabled>
  33. <TargetFrameworkProfile />
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  36. <DebugSymbols>true</DebugSymbols>
  37. <OutputPath>..\bin\</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <DebugType>full</DebugType>
  40. <PlatformTarget>x64</PlatformTarget>
  41. <ErrorReport>prompt</ErrorReport>
  42. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  43. <Prefer32Bit>true</Prefer32Bit>
  44. <LangVersion>latest</LangVersion>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  47. <OutputPath>..\bin\</OutputPath>
  48. <DefineConstants>TRACE</DefineConstants>
  49. <Optimize>true</Optimize>
  50. <DebugType>pdbonly</DebugType>
  51. <PlatformTarget>x64</PlatformTarget>
  52. <ErrorReport>prompt</ErrorReport>
  53. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  54. <Prefer32Bit>true</Prefer32Bit>
  55. <LangVersion>latest</LangVersion>
  56. </PropertyGroup>
  57. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  58. <DebugSymbols>true</DebugSymbols>
  59. <OutputPath>bin\</OutputPath>
  60. <DefineConstants>DEBUG;TRACE</DefineConstants>
  61. <DebugType>full</DebugType>
  62. <PlatformTarget>x86</PlatformTarget>
  63. <ErrorReport>prompt</ErrorReport>
  64. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  65. <Prefer32Bit>true</Prefer32Bit>
  66. </PropertyGroup>
  67. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  68. <OutputPath>bin\</OutputPath>
  69. <DefineConstants>TRACE</DefineConstants>
  70. <Optimize>true</Optimize>
  71. <DebugType>pdbonly</DebugType>
  72. <PlatformTarget>x86</PlatformTarget>
  73. <ErrorReport>prompt</ErrorReport>
  74. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  75. <Prefer32Bit>true</Prefer32Bit>
  76. </PropertyGroup>
  77. <PropertyGroup>
  78. <ManifestCertificateThumbprint>F7EA7021D7AB581931F1CE0ECDB5D3DB6D9991B7</ManifestCertificateThumbprint>
  79. </PropertyGroup>
  80. <PropertyGroup>
  81. <GenerateManifests>false</GenerateManifests>
  82. </PropertyGroup>
  83. <PropertyGroup>
  84. <SignManifests>false</SignManifests>
  85. </PropertyGroup>
  86. <PropertyGroup>
  87. <TargetZone>LocalIntranet</TargetZone>
  88. </PropertyGroup>
  89. <PropertyGroup>
  90. <ApplicationManifest>Properties\app.manifest</ApplicationManifest>
  91. </PropertyGroup>
  92. <ItemGroup>
  93. <Reference Include="MonoGame.Framework, Version=3.7.1.189, Culture=neutral, processorArchitecture=MSIL">
  94. <HintPath>..\packages\MonoGame.Framework.Portable.3.7.1.189\lib\portable-net45+win8+wpa81\MonoGame.Framework.dll</HintPath>
  95. </Reference>
  96. <Reference Include="System" />
  97. <Reference Include="System.Core" />
  98. <Reference Include="System.Xml.Linq" />
  99. <Reference Include="System.Data.DataSetExtensions" />
  100. <Reference Include="Microsoft.CSharp" />
  101. <Reference Include="System.Data" />
  102. <Reference Include="System.Net.Http" />
  103. <Reference Include="System.Xml" />
  104. </ItemGroup>
  105. <ItemGroup>
  106. <Compile Include="PAK.cs" />
  107. <Compile Include="Program.cs" />
  108. <Compile Include="Properties\AssemblyInfo.cs" />
  109. </ItemGroup>
  110. <ItemGroup>
  111. <None Include="App.config" />
  112. <None Include="packages.config" />
  113. <None Include="Properties\app.manifest" />
  114. </ItemGroup>
  115. <ItemGroup>
  116. <ProjectReference Include="..\Core\Core.csproj">
  117. <Project>{a5408515-75b8-4eea-8e9f-2c9cd7b56e59}</Project>
  118. <Name>Core</Name>
  119. </ProjectReference>
  120. <ProjectReference Include="..\Encoding\Encoding.csproj">
  121. <Project>{a9b33bf4-9b03-4e3d-bf6a-181521046ee8}</Project>
  122. <Name>Encoding</Name>
  123. </ProjectReference>
  124. </ItemGroup>
  125. <ItemGroup>
  126. <BootstrapperPackage Include=".NETFramework,Version=v4.6">
  127. <Visible>False</Visible>
  128. <ProductName>Microsoft .NET Framework 4.6 %28x86 and x64%29</ProductName>
  129. <Install>true</Install>
  130. </BootstrapperPackage>
  131. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  132. <Visible>False</Visible>
  133. <ProductName>.NET Framework 3.5 SP1</ProductName>
  134. <Install>false</Install>
  135. </BootstrapperPackage>
  136. </ItemGroup>
  137. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  138. </Project>