ArcToolkitCLI.csproj 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="..\packages\ILRepack.2.0.16\build\ILRepack.props" Condition="Exists('..\packages\ILRepack.2.0.16\build\ILRepack.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{A653637C-67C1-4CFE-8B16-BB3AC42D0AA1}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>ArcToolkitCLI</RootNamespace>
  11. <AssemblyName>ArcToolkitCLI</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <NuGetPackageImportStamp>
  16. </NuGetPackageImportStamp>
  17. <TargetFrameworkProfile />
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <LangVersion>8.0</LangVersion>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <PlatformTarget>AnyCPU</PlatformTarget>
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>bin\Release\</OutputPath>
  35. <DefineConstants>TRACE</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. <LangVersion>8.0</LangVersion>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="COM3D2.Toolkit">
  42. <HintPath>..\lib\COM3D2.Toolkit.dll</HintPath>
  43. </Reference>
  44. <Reference Include="CommandLine">
  45. <HintPath>..\lib\CommandLine.dll</HintPath>
  46. </Reference>
  47. <Reference Include="Glob, Version=1.1.3.0, Culture=neutral, processorArchitecture=MSIL">
  48. <HintPath>..\packages\Glob.1.1.3\lib\net46\Glob.dll</HintPath>
  49. </Reference>
  50. <Reference Include="LibSquishNet, Version=1.11.5792.20541, Culture=neutral, processorArchitecture=MSIL">
  51. <HintPath>..\packages\LibSquishNet.1.11.5792.20541\lib\net46\LibSquishNet.dll</HintPath>
  52. </Reference>
  53. <Reference Include="System" />
  54. <Reference Include="System.Core" />
  55. <Reference Include="System.Drawing" />
  56. <Reference Include="System.IO.Abstractions, Version=3.0.0.0, Culture=neutral, PublicKeyToken=96bf224d23c43e59, processorArchitecture=MSIL">
  57. <HintPath>..\packages\System.IO.Abstractions.3.0.10\lib\net40\System.IO.Abstractions.dll</HintPath>
  58. </Reference>
  59. <Reference Include="System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  60. <HintPath>..\packages\System.IO.FileSystem.4.3.0\lib\net46\System.IO.FileSystem.dll</HintPath>
  61. </Reference>
  62. <Reference Include="System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  63. <HintPath>..\packages\System.IO.FileSystem.Primitives.4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll</HintPath>
  64. </Reference>
  65. <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  66. <HintPath>..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
  67. </Reference>
  68. <Reference Include="YamlDotNet, Version=8.0.0.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e">
  69. <HintPath>..\packages\YamlDotNet.8.1.0\lib\net45\YamlDotNet.dll</HintPath>
  70. <Private>True</Private>
  71. </Reference>
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Compile Include="Commands\ConvertCommand.cs" />
  75. <Compile Include="Commands\Converters\BaseConverter.cs" />
  76. <Compile Include="Commands\Converters\MateConverter.cs" />
  77. <Compile Include="Commands\Converters\MenuConverter.cs" />
  78. <Compile Include="Commands\Converters\NeiConverter.cs" />
  79. <Compile Include="Commands\Converters\TexConverter.cs" />
  80. <Compile Include="Commands\DecryptCommand.cs" />
  81. <Compile Include="Commands\ExtractCommand.cs" />
  82. <Compile Include="Commands\ICommand.cs" />
  83. <Compile Include="Commands\InfoCommand.cs" />
  84. <Compile Include="Commands\Options\IInputOptions.cs" />
  85. <Compile Include="Commands\Options\IOutputOptions.cs" />
  86. <Compile Include="Commands\Options\IDecryptionOptions.cs" />
  87. <Compile Include="Util\Errors.cs" />
  88. <Compile Include="Program.cs" />
  89. <Compile Include="Properties\AssemblyInfo.cs" />
  90. <Compile Include="Util\Encryption.cs" />
  91. <Compile Include="Util\Glob.cs" />
  92. </ItemGroup>
  93. <ItemGroup>
  94. <None Include="App.config" />
  95. <None Include="packages.config" />
  96. </ItemGroup>
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  99. <PropertyGroup>
  100. <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
  101. </PropertyGroup>
  102. <Error Condition="!Exists('..\packages\ILRepack.2.0.16\build\ILRepack.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\ILRepack.2.0.16\build\ILRepack.props'))" />
  103. <Error Condition="!Exists('..\packages\ILRepack.Lib.MSBuild.Task.2.0.16.1\build\ILRepack.Lib.MSBuild.Task.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\ILRepack.Lib.MSBuild.Task.2.0.16.1\build\ILRepack.Lib.MSBuild.Task.targets'))" />
  104. </Target>
  105. <Import Project="..\packages\ILRepack.Lib.MSBuild.Task.2.0.16.1\build\ILRepack.Lib.MSBuild.Task.targets" Condition="Exists('..\packages\ILRepack.Lib.MSBuild.Task.2.0.16.1\build\ILRepack.Lib.MSBuild.Task.targets')" />
  106. </Project>