ArcToolkitCLI.csproj 5.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <PlatformTarget>AnyCPU</PlatformTarget>
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="COM3D2.Toolkit">
  40. <HintPath>..\lib\COM3D2.Toolkit.dll</HintPath>
  41. </Reference>
  42. <Reference Include="CommandLine">
  43. <HintPath>..\lib\CommandLine.dll</HintPath>
  44. </Reference>
  45. <Reference Include="Glob, Version=1.1.3.0, Culture=neutral, processorArchitecture=MSIL">
  46. <HintPath>..\packages\Glob.1.1.3\lib\net46\Glob.dll</HintPath>
  47. </Reference>
  48. <Reference Include="LibSquishNet, Version=1.11.5792.20541, Culture=neutral, processorArchitecture=MSIL">
  49. <HintPath>..\packages\LibSquishNet.1.11.5792.20541\lib\net46\LibSquishNet.dll</HintPath>
  50. </Reference>
  51. <Reference Include="System" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Drawing" />
  54. <Reference Include="System.IO.Abstractions, Version=3.0.0.0, Culture=neutral, PublicKeyToken=96bf224d23c43e59, processorArchitecture=MSIL">
  55. <HintPath>..\packages\System.IO.Abstractions.3.0.10\lib\net40\System.IO.Abstractions.dll</HintPath>
  56. </Reference>
  57. <Reference Include="System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  58. <HintPath>..\packages\System.IO.FileSystem.4.3.0\lib\net46\System.IO.FileSystem.dll</HintPath>
  59. </Reference>
  60. <Reference Include="System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  61. <HintPath>..\packages\System.IO.FileSystem.Primitives.4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll</HintPath>
  62. </Reference>
  63. <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  64. <HintPath>..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
  65. </Reference>
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="Commands\ConvertCommand.cs" />
  69. <Compile Include="Commands\Converters\IConverterCommand.cs" />
  70. <Compile Include="Commands\Converters\NeiConverter.cs" />
  71. <Compile Include="Commands\Converters\TexConverter.cs" />
  72. <Compile Include="Commands\DecryptCommand.cs" />
  73. <Compile Include="Commands\ExtractCommand.cs" />
  74. <Compile Include="Commands\ICommand.cs" />
  75. <Compile Include="Commands\InfoCommand.cs" />
  76. <Compile Include="Commands\Options\IInputOptions.cs" />
  77. <Compile Include="Commands\Options\IOutputOptions.cs" />
  78. <Compile Include="Commands\Options\IDecryptionOptions.cs" />
  79. <Compile Include="Util\Errors.cs" />
  80. <Compile Include="Program.cs" />
  81. <Compile Include="Properties\AssemblyInfo.cs" />
  82. <Compile Include="Util\Encryption.cs" />
  83. <Compile Include="Util\Glob.cs" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <None Include="App.config" />
  87. <None Include="packages.config" />
  88. </ItemGroup>
  89. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  90. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  91. <PropertyGroup>
  92. <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>
  93. </PropertyGroup>
  94. <Error Condition="!Exists('..\packages\ILRepack.2.0.16\build\ILRepack.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\ILRepack.2.0.16\build\ILRepack.props'))" />
  95. <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'))" />
  96. </Target>
  97. <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')" />
  98. </Project>