SMBLibrary.Win32.VS2005.csproj 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>{8CE25496-A52B-4841-822F-74C469D10EE7}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>SMBLibrary.Win32</RootNamespace>
  11. <AssemblyName>SMBLibrary.Win32</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>DEBUG;TRACE</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. </ItemGroup>
  33. <ItemGroup>
  34. <Compile Include="NTFileStore\NTDirectoryFileSystem.cs" />
  35. <Compile Include="NTFileStore\PendingRequestCollection.cs" />
  36. <Compile Include="ProcessHelper.cs" />
  37. <Compile Include="Properties\AssemblyInfo.cs" />
  38. <Compile Include="Security\IntegratedNTLMAuthenticationProvider.cs" />
  39. <Compile Include="Security\LoginAPI.cs" />
  40. <Compile Include="Security\NetworkAPI.cs" />
  41. <Compile Include="Security\SSPIHelper.cs" />
  42. <Compile Include="Security\Structures\SecBuffer.cs" />
  43. <Compile Include="Security\Structures\SecBufferDesc.cs" />
  44. <Compile Include="ThreadingHelper.cs" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <ProjectReference Include="..\SMBLibrary\SMBLibrary.VS2005.csproj">
  48. <Project>{8D9E8F5D-FD13-4E4C-9723-A333DA2034A7}</Project>
  49. <Name>SMBLibrary</Name>
  50. </ProjectReference>
  51. <ProjectReference Include="..\Utilities\Utilities.VS2005.csproj">
  52. <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
  53. <Name>Utilities</Name>
  54. </ProjectReference>
  55. </ItemGroup>
  56. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  57. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  58. Other similar extension points exist, see Microsoft.Common.targets.
  59. <Target Name="BeforeBuild">
  60. </Target>
  61. <Target Name="AfterBuild">
  62. </Target>
  63. -->
  64. </Project>