1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>8.0.50727</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{6C9727E4-00AC-4DE0-86A3-5A10259DE3E4}</ProjectGuid>
- <OutputType>Exe</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>ISCSIConsole</RootNamespace>
- <AssemblyName>ISCSIConsole</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>TRACE;DEBUG</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.ServiceProcess" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Disks\VolumeDisk.cs" />
- <Compile Include="OfflineCommand.cs" />
- <Compile Include="Program.AttachCommand.cs" />
- <Compile Include="Program.CreateCommand.cs" />
- <Compile Include="Program.cs" />
- <Compile Include="Program.DetailCommand.cs" />
- <Compile Include="Program.HelpCommand.cs" />
- <Compile Include="Program.ListCommand.cs" />
- <Compile Include="Program.Log.cs" />
- <Compile Include="Program.SelectCommand.cs" />
- <Compile Include="Program.SetCommand.cs" />
- <Compile Include="Program.StartCommand.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\DiskAccessLibrary\DiskAccessLibrary.csproj">
- <Project>{000D0367-63A1-475D-982D-67A0B93BABEB}</Project>
- <Name>DiskAccessLibrary</Name>
- </ProjectReference>
- <ProjectReference Include="..\ISCSI\ISCSI.csproj">
- <Project>{225ABFC2-FCA5-4C23-B7E3-0874E9A60548}</Project>
- <Name>ISCSI</Name>
- </ProjectReference>
- <ProjectReference Include="..\Utilities\Utilities.csproj">
- <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
- <Name>Utilities</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Content Include="RevisionHistory.txt" />
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|