ISCSIConsole.csproj 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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="OfflineCommand.cs" />
  37. <Compile Include="Program.AttachCommand.cs" />
  38. <Compile Include="Program.CreateCommand.cs" />
  39. <Compile Include="Program.cs" />
  40. <Compile Include="Program.DetailCommand.cs" />
  41. <Compile Include="Program.HelpCommand.cs" />
  42. <Compile Include="Program.ListCommand.cs" />
  43. <Compile Include="Program.Log.cs" />
  44. <Compile Include="Program.SelectCommand.cs" />
  45. <Compile Include="Program.SetCommand.cs" />
  46. <Compile Include="Program.StartCommand.cs" />
  47. <Compile Include="Properties\AssemblyInfo.cs" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <ProjectReference Include="..\DiskAccessLibrary\DiskAccessLibrary.csproj">
  51. <Project>{000D0367-63A1-475D-982D-67A0B93BABEB}</Project>
  52. <Name>DiskAccessLibrary</Name>
  53. </ProjectReference>
  54. <ProjectReference Include="..\ISCSI\ISCSI.csproj">
  55. <Project>{225ABFC2-FCA5-4C23-B7E3-0874E9A60548}</Project>
  56. <Name>ISCSI</Name>
  57. </ProjectReference>
  58. <ProjectReference Include="..\Utilities\Utilities.csproj">
  59. <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
  60. <Name>Utilities</Name>
  61. </ProjectReference>
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Content Include="RevisionHistory.txt" />
  65. </ItemGroup>
  66. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  67. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  68. Other similar extension points exist, see Microsoft.Common.targets.
  69. <Target Name="BeforeBuild">
  70. </Target>
  71. <Target Name="AfterBuild">
  72. </Target>
  73. -->
  74. </Project>