فهرست منبع

SMBLibrary: Moved Win32 specific functionality to separate project

Tal Aloni 5 سال پیش
والد
کامیت
bd68e82f00

SMBLibrary/Win32/NTFileStore/NTDirectoryFileSystem.cs → SMBLibrary.Win32/NTFileStore/NTDirectoryFileSystem.cs


SMBLibrary/Win32/NTFileStore/PendingRequestCollection.cs → SMBLibrary.Win32/NTFileStore/PendingRequestCollection.cs


SMBLibrary/Win32/ProcessHelper.cs → SMBLibrary.Win32/ProcessHelper.cs


+ 35 - 0
SMBLibrary.Win32/Properties/AssemblyInfo.cs

@@ -0,0 +1,35 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following 
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("SMBLibrary.Win32")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Tal Aloni")]
+[assembly: AssemblyProduct("SMBLibrary.Win32")]
+[assembly: AssemblyCopyright("Copyright © Tal Aloni 2014-2019")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible 
+// to COM components.  If you need to access a type in this assembly from 
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("a2cd5b5c-fb90-412f-9b0d-63967b9cb2ee")]
+
+// Version information for an assembly consists of the following four values:
+//
+//      Major Version
+//      Minor Version 
+//      Build Number
+//      Revision
+//
+// You can specify all the values or you can default the Revision and Build Numbers 
+// by using the '*' as shown below:
+[assembly: AssemblyVersion("1.3.7.0")]
+[assembly: AssemblyFileVersion("1.3.7.0")]

+ 64 - 0
SMBLibrary.Win32/SMBLibrary.Win32.csproj

@@ -0,0 +1,64 @@
+<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>{8CE25496-A52B-4841-822F-74C469D10EE7}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>SMBLibrary.Win32</RootNamespace>
+    <AssemblyName>SMBLibrary.Win32</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="System" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="NTFileStore\NTDirectoryFileSystem.cs" />
+    <Compile Include="NTFileStore\PendingRequestCollection.cs" />
+    <Compile Include="ProcessHelper.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+    <Compile Include="Security\IntegratedNTLMAuthenticationProvider.cs" />
+    <Compile Include="Security\LoginAPI.cs" />
+    <Compile Include="Security\NetworkAPI.cs" />
+    <Compile Include="Security\SSPIHelper.cs" />
+    <Compile Include="Security\Structures\SecBuffer.cs" />
+    <Compile Include="Security\Structures\SecBufferDesc.cs" />
+    <Compile Include="ThreadingHelper.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="..\SMBLibrary\SMBLibrary.csproj">
+      <Project>{8D9E8F5D-FD13-4E4C-9723-A333DA2034A7}</Project>
+      <Name>SMBLibrary</Name>
+    </ProjectReference>
+    <ProjectReference Include="..\Utilities\Utilities.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>

SMBLibrary/Win32/Security/IntegratedNTLMAuthenticationProvider.cs → SMBLibrary.Win32/Security/IntegratedNTLMAuthenticationProvider.cs


SMBLibrary/Win32/Security/LoginAPI.cs → SMBLibrary.Win32/Security/LoginAPI.cs


SMBLibrary/Win32/Security/NetworkAPI.cs → SMBLibrary.Win32/Security/NetworkAPI.cs


SMBLibrary/Win32/Security/SSPIHelper.cs → SMBLibrary.Win32/Security/SSPIHelper.cs


SMBLibrary/Win32/Security/Structures/SecBuffer.cs → SMBLibrary.Win32/Security/Structures/SecBuffer.cs


SMBLibrary/Win32/Security/Structures/SecBufferDesc.cs → SMBLibrary.Win32/Security/Structures/SecBufferDesc.cs


SMBLibrary/Win32/ThreadingHelper.cs → SMBLibrary.Win32/ThreadingHelper.cs


+ 0 - 10
SMBLibrary/SMBLibrary.csproj

@@ -589,16 +589,6 @@
     <Compile Include="Tests\SMB2SigningTests.cs" />
     <Compile Include="Utilities\LogEntry.cs" />
     <Compile Include="Utilities\SocketUtils.cs" />
-    <Compile Include="Win32\NTFileStore\NTDirectoryFileSystem.cs" />
-    <Compile Include="Win32\NTFileStore\PendingRequestCollection.cs" />
-    <Compile Include="Win32\ProcessHelper.cs" />
-    <Compile Include="Win32\Security\IntegratedNTLMAuthenticationProvider.cs" />
-    <Compile Include="Win32\Security\LoginAPI.cs" />
-    <Compile Include="Win32\Security\NetworkAPI.cs" />
-    <Compile Include="Win32\Security\SSPIHelper.cs" />
-    <Compile Include="Win32\Security\Structures\SecBuffer.cs" />
-    <Compile Include="Win32\Security\Structures\SecBufferDesc.cs" />
-    <Compile Include="Win32\ThreadingHelper.cs" />
   </ItemGroup>
   <ItemGroup>
     <Content Include="Readme.txt" />

+ 6 - 0
SMBServer.sln

@@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SMBLibrary", "SMBLibrary\SM
 EndProject
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utilities", "Utilities\Utilities.csproj", "{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}"
 EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SMBLibrary.Win32", "SMBLibrary.Win32\SMBLibrary.Win32.csproj", "{8CE25496-A52B-4841-822F-74C469D10EE7}"
+EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 		Debug|Any CPU = Debug|Any CPU
@@ -25,6 +27,10 @@ Global
 		{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}.Release|Any CPU.Build.0 = Release|Any CPU
+		{8CE25496-A52B-4841-822F-74C469D10EE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{8CE25496-A52B-4841-822F-74C469D10EE7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{8CE25496-A52B-4841-822F-74C469D10EE7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{8CE25496-A52B-4841-822F-74C469D10EE7}.Release|Any CPU.Build.0 = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE

+ 4 - 0
SMBServer/SMBServer.csproj

@@ -56,6 +56,10 @@
     <Compile Include="UserCollection.cs" />
   </ItemGroup>
   <ItemGroup>
+    <ProjectReference Include="..\SMBLibrary.Win32\SMBLibrary.Win32.csproj">
+      <Project>{8CE25496-A52B-4841-822F-74C469D10EE7}</Project>
+      <Name>SMBLibrary.Win32</Name>
+    </ProjectReference>
     <ProjectReference Include="..\SMBLibrary\SMBLibrary.csproj">
       <Project>{8D9E8F5D-FD13-4E4C-9723-A333DA2034A7}</Project>
       <Name>SMBLibrary</Name>