ISCSIConsole.csproj 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5. <ProductVersion>8.0.50727</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <ProjectGuid>{6C9727E4-00AC-4DE0-86A3-5A10259DE3E4}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ISCSIConsole</RootNamespace>
  11. <AssemblyName>ISCSIConsole</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug\</OutputPath>
  18. <DefineConstants>TRACE;DEBUG</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23. <DebugType>pdbonly</DebugType>
  24. <Optimize>true</Optimize>
  25. <OutputPath>bin\Release\</OutputPath>
  26. <DefineConstants>TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Reference Include="System" />
  32. <Reference Include="System.ServiceProcess" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <Compile Include="Disks\VolumeDisk.cs" />
  36. <Compile Include="FormattingHelper.cs" />
  37. <Compile Include="ISCSINameHelper.cs" />
  38. <Compile Include="OfflineCommand.cs" />
  39. <Compile Include="Program.AttachCommand.cs" />
  40. <Compile Include="Program.CreateCommand.cs" />
  41. <Compile Include="Program.cs" />
  42. <Compile Include="Program.DetailCommand.cs" />
  43. <Compile Include="Program.HelpCommand.cs" />
  44. <Compile Include="Program.ListCommand.cs" />
  45. <Compile Include="Program.Log.cs" />
  46. <Compile Include="Program.SelectCommand.cs" />
  47. <Compile Include="Program.SetCommand.cs" />
  48. <Compile Include="Program.StartCommand.cs" />
  49. <Compile Include="Properties\AssemblyInfo.cs" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <ProjectReference Include="..\DiskAccessLibrary\DiskAccessLibrary.csproj">
  53. <Project>{000D0367-63A1-475D-982D-67A0B93BABEB}</Project>
  54. <Name>DiskAccessLibrary</Name>
  55. </ProjectReference>
  56. <ProjectReference Include="..\ISCSI\ISCSI.csproj">
  57. <Project>{225ABFC2-FCA5-4C23-B7E3-0874E9A60548}</Project>
  58. <Name>ISCSI</Name>
  59. </ProjectReference>
  60. <ProjectReference Include="..\Utilities\Utilities.csproj">
  61. <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
  62. <Name>Utilities</Name>
  63. </ProjectReference>
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Content Include="RevisionHistory.txt" />
  67. </ItemGroup>
  68. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  69. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  70. Other similar extension points exist, see Microsoft.Common.targets.
  71. <Target Name="BeforeBuild">
  72. </Target>
  73. <Target Name="AfterBuild">
  74. </Target>
  75. -->
  76. </Project>