PAK Extractor.csproj 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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.6</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. </PropertyGroup>
  34. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  35. <DebugSymbols>true</DebugSymbols>
  36. <OutputPath>..\bin\</OutputPath>
  37. <DefineConstants>DEBUG;TRACE</DefineConstants>
  38. <DebugType>full</DebugType>
  39. <PlatformTarget>x64</PlatformTarget>
  40. <ErrorReport>prompt</ErrorReport>
  41. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  42. <Prefer32Bit>true</Prefer32Bit>
  43. <LangVersion>latest</LangVersion>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  46. <OutputPath>..\bin\</OutputPath>
  47. <DefineConstants>TRACE</DefineConstants>
  48. <Optimize>true</Optimize>
  49. <DebugType>pdbonly</DebugType>
  50. <PlatformTarget>x64</PlatformTarget>
  51. <ErrorReport>prompt</ErrorReport>
  52. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  53. <Prefer32Bit>true</Prefer32Bit>
  54. <LangVersion>latest</LangVersion>
  55. </PropertyGroup>
  56. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  57. <DebugSymbols>true</DebugSymbols>
  58. <OutputPath>bin\</OutputPath>
  59. <DefineConstants>DEBUG;TRACE</DefineConstants>
  60. <DebugType>full</DebugType>
  61. <PlatformTarget>x86</PlatformTarget>
  62. <ErrorReport>prompt</ErrorReport>
  63. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  64. <Prefer32Bit>true</Prefer32Bit>
  65. </PropertyGroup>
  66. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  67. <OutputPath>bin\</OutputPath>
  68. <DefineConstants>TRACE</DefineConstants>
  69. <Optimize>true</Optimize>
  70. <DebugType>pdbonly</DebugType>
  71. <PlatformTarget>x86</PlatformTarget>
  72. <ErrorReport>prompt</ErrorReport>
  73. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  74. <Prefer32Bit>true</Prefer32Bit>
  75. </PropertyGroup>
  76. <PropertyGroup>
  77. <ManifestCertificateThumbprint>F7EA7021D7AB581931F1CE0ECDB5D3DB6D9991B7</ManifestCertificateThumbprint>
  78. </PropertyGroup>
  79. <PropertyGroup>
  80. <GenerateManifests>false</GenerateManifests>
  81. </PropertyGroup>
  82. <PropertyGroup>
  83. <SignManifests>false</SignManifests>
  84. </PropertyGroup>
  85. <PropertyGroup>
  86. <TargetZone>LocalIntranet</TargetZone>
  87. </PropertyGroup>
  88. <PropertyGroup>
  89. <ApplicationManifest>Properties\app.manifest</ApplicationManifest>
  90. </PropertyGroup>
  91. <ItemGroup>
  92. <Reference Include="MonoGame.Framework, Version=3.7.1.189, Culture=neutral, processorArchitecture=MSIL">
  93. <HintPath>..\packages\MonoGame.Framework.Portable.3.7.1.189\lib\portable-net45+win8+wpa81\MonoGame.Framework.dll</HintPath>
  94. </Reference>
  95. <Reference Include="System" />
  96. <Reference Include="System.Core" />
  97. <Reference Include="System.Xml.Linq" />
  98. <Reference Include="System.Data.DataSetExtensions" />
  99. <Reference Include="Microsoft.CSharp" />
  100. <Reference Include="System.Data" />
  101. <Reference Include="System.Net.Http" />
  102. <Reference Include="System.Xml" />
  103. </ItemGroup>
  104. <ItemGroup>
  105. <Compile Include="PAK.cs" />
  106. <Compile Include="Program.cs" />
  107. <Compile Include="Properties\AssemblyInfo.cs" />
  108. </ItemGroup>
  109. <ItemGroup>
  110. <None Include="App.config" />
  111. <None Include="packages.config" />
  112. <None Include="Properties\app.manifest" />
  113. </ItemGroup>
  114. <ItemGroup>
  115. <ProjectReference Include="..\Core\Core.csproj">
  116. <Project>{a5408515-75b8-4eea-8e9f-2c9cd7b56e59}</Project>
  117. <Name>Core</Name>
  118. </ProjectReference>
  119. <ProjectReference Include="..\Encoding\Encoding.csproj">
  120. <Project>{a9b33bf4-9b03-4e3d-bf6a-181521046ee8}</Project>
  121. <Name>Encoding</Name>
  122. </ProjectReference>
  123. </ItemGroup>
  124. <ItemGroup>
  125. <BootstrapperPackage Include=".NETFramework,Version=v4.6">
  126. <Visible>False</Visible>
  127. <ProductName>Microsoft .NET Framework 4.6 %28x86 and x64%29</ProductName>
  128. <Install>true</Install>
  129. </BootstrapperPackage>
  130. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  131. <Visible>False</Visible>
  132. <ProductName>.NET Framework 3.5 SP1</ProductName>
  133. <Install>false</Install>
  134. </BootstrapperPackage>
  135. </ItemGroup>
  136. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  137. </Project>