1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <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>{C79B06EB-32C1-44CA-B7E1-A891B8135658}</ProjectGuid>
- <OutputType>Exe</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>SMBLibrary.Tests</RootNamespace>
- <AssemblyName>SMBLibrary.Tests</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</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="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>Components\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="NetBiosTests.cs" />
- <Compile Include="NTFileStore\NTDirectoryFileSystemTests.cs" />
- <Compile Include="NTFileStore\NTFileStoreTests.cs" />
- <Compile Include="NTLM\NTLMAuthenticationTests.cs" />
- <Compile Include="NTLM\NTLMSigningTests.cs" />
- <Compile Include="NTLM\RC4Tests.cs" />
- <Compile Include="Program.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="RPCTests.cs" />
- <Compile Include="SMB2SigningTests.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\SMBLibrary.Win32\SMBLibrary.Win32.VS2005.csproj">
- <Project>{8CE25496-A52B-4841-822F-74C469D10EE7}</Project>
- <Name>SMBLibrary.Win32</Name>
- </ProjectReference>
- <ProjectReference Include="..\SMBLibrary\SMBLibrary.VS2005.csproj">
- <Project>{8D9E8F5D-FD13-4E4C-9723-A333DA2034A7}</Project>
- <Name>SMBLibrary</Name>
- </ProjectReference>
- <ProjectReference Include="..\Utilities\Utilities.VS2005.csproj">
- <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
- <Name>Utilities</Name>
- </ProjectReference>
- </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>
|