ISCSIConsole.csproj 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ISCSIConsole</RootNamespace>
  11. <AssemblyName>ISCSIConsole</AssemblyName>
  12. <ApplicationIcon>Icons\SCSI.ico</ApplicationIcon>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>bin\Debug\</OutputPath>
  19. <DefineConstants>TRACE;DEBUG;Win32</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  24. <DebugType>pdbonly</DebugType>
  25. <Optimize>true</Optimize>
  26. <OutputPath>bin\Release\</OutputPath>
  27. <DefineConstants>TRACE;Win32</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <Reference Include="System" />
  33. <Reference Include="System.Drawing" />
  34. <Reference Include="System.Windows.Forms" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Compile Include="AddTargetForm.cs">
  38. <SubType>Form</SubType>
  39. </Compile>
  40. <Compile Include="AddTargetForm.Designer.cs">
  41. <DependentUpon>AddTargetForm.cs</DependentUpon>
  42. </Compile>
  43. <Compile Include="CreateDiskImageForm.cs">
  44. <SubType>Form</SubType>
  45. </Compile>
  46. <Compile Include="CreateDiskImageForm.Designer.cs">
  47. <DependentUpon>CreateDiskImageForm.cs</DependentUpon>
  48. </Compile>
  49. <Compile Include="Disks\VolumeDisk.cs" />
  50. <Compile Include="Helpers\FormattingHelper.cs" />
  51. <Compile Include="Helpers\ISCSINameHelper.cs" />
  52. <Compile Include="Helpers\LockUtils.cs" />
  53. <Compile Include="Helpers\UsageCounter.cs" />
  54. <Compile Include="MainForm.cs">
  55. <SubType>Form</SubType>
  56. </Compile>
  57. <Compile Include="MainForm.Designer.cs">
  58. <DependentUpon>MainForm.cs</DependentUpon>
  59. </Compile>
  60. <Compile Include="Program.cs" />
  61. <Compile Include="Program.Log.cs" />
  62. <Compile Include="Properties\AssemblyInfo.cs" />
  63. <Compile Include="SelectDiskImageForm.cs">
  64. <SubType>Form</SubType>
  65. </Compile>
  66. <Compile Include="SelectDiskImageForm.Designer.cs">
  67. <DependentUpon>SelectDiskImageForm.cs</DependentUpon>
  68. </Compile>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <EmbeddedResource Include="AddTargetForm.resx">
  72. <SubType>Designer</SubType>
  73. <DependentUpon>AddTargetForm.cs</DependentUpon>
  74. </EmbeddedResource>
  75. <EmbeddedResource Include="CreateDiskImageForm.resx">
  76. <SubType>Designer</SubType>
  77. <DependentUpon>CreateDiskImageForm.cs</DependentUpon>
  78. </EmbeddedResource>
  79. <EmbeddedResource Include="MainForm.resx">
  80. <SubType>Designer</SubType>
  81. <DependentUpon>MainForm.cs</DependentUpon>
  82. </EmbeddedResource>
  83. <EmbeddedResource Include="SelectDiskImageForm.resx">
  84. <DependentUpon>SelectDiskImageForm.cs</DependentUpon>
  85. <SubType>Designer</SubType>
  86. </EmbeddedResource>
  87. </ItemGroup>
  88. <ItemGroup>
  89. <Compile Include="Win32\SecurityHelper.cs" />
  90. <Compile Include="Win32\SelectPhysicalDiskForm.cs">
  91. <SubType>Form</SubType>
  92. </Compile>
  93. <Compile Include="Win32\SelectPhysicalDiskForm.Designer.cs">
  94. <DependentUpon>SelectPhysicalDiskForm.cs</DependentUpon>
  95. </Compile>
  96. <Compile Include="Win32\SelectVolumeForm.cs">
  97. <SubType>Form</SubType>
  98. </Compile>
  99. <Compile Include="Win32\SelectVolumeForm.Designer.cs">
  100. <DependentUpon>SelectVolumeForm.cs</DependentUpon>
  101. </Compile>
  102. <Compile Include="Win32\VolumeInfo.cs" />
  103. </ItemGroup>
  104. <ItemGroup>
  105. <EmbeddedResource Include="Win32\SelectPhysicalDiskForm.resx">
  106. <DependentUpon>SelectPhysicalDiskForm.cs</DependentUpon>
  107. <SubType>Designer</SubType>
  108. </EmbeddedResource>
  109. <EmbeddedResource Include="Win32\SelectVolumeForm.resx">
  110. <DependentUpon>SelectVolumeForm.cs</DependentUpon>
  111. <SubType>Designer</SubType>
  112. </EmbeddedResource>
  113. </ItemGroup>
  114. <ItemGroup>
  115. <Content Include="Icons\SCSI.ico" />
  116. <Content Include="RevisionHistory.txt" />
  117. </ItemGroup>
  118. <ItemGroup>
  119. <ProjectReference Include="..\DiskAccessLibrary\DiskAccessLibrary.csproj">
  120. <Project>{000D0367-63A1-475D-982D-67A0B93BABEB}</Project>
  121. <Name>DiskAccessLibrary</Name>
  122. </ProjectReference>
  123. <ProjectReference Include="..\ISCSI\ISCSI.csproj">
  124. <Project>{225ABFC2-FCA5-4C23-B7E3-0874E9A60548}</Project>
  125. <Name>ISCSI</Name>
  126. </ProjectReference>
  127. <ProjectReference Include="..\Utilities\Utilities.csproj">
  128. <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
  129. <Name>Utilities</Name>
  130. </ProjectReference>
  131. </ItemGroup>
  132. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  133. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  134. Other similar extension points exist, see Microsoft.Common.targets.
  135. <Target Name="BeforeBuild">
  136. </Target>
  137. <Target Name="AfterBuild">
  138. </Target>
  139. -->
  140. </Project>