SMBServer.csproj 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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>{70D43E2A-26A2-4046-A472-5BA8C9437612}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>SMBServer</RootNamespace>
  11. <AssemblyName>SMBServer</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. <Reference Include="System.Data" />
  33. <Reference Include="System.Deployment" />
  34. <Reference Include="System.Drawing" />
  35. <Reference Include="System.Windows.Forms" />
  36. <Reference Include="System.Xml" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Include="DirectoryFileSystem\DirectoryFileSystem.cs" />
  40. <Compile Include="DirectoryFileSystem\StreamWatcher.cs" />
  41. <Compile Include="DirectoryFileSystem\Win32Native.cs" />
  42. <Compile Include="LogWriter.cs" />
  43. <Compile Include="NetworkInterfaceHelper.cs" />
  44. <Compile Include="ServerUI.cs">
  45. <SubType>Form</SubType>
  46. </Compile>
  47. <Compile Include="ServerUI.Designer.cs">
  48. <DependentUpon>ServerUI.cs</DependentUpon>
  49. </Compile>
  50. <Compile Include="Program.cs" />
  51. <Compile Include="Properties\AssemblyInfo.cs" />
  52. <EmbeddedResource Include="Properties\Resources.resx">
  53. <Generator>ResXFileCodeGenerator</Generator>
  54. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  55. <SubType>Designer</SubType>
  56. </EmbeddedResource>
  57. <EmbeddedResource Include="ServerUI.resx">
  58. <SubType>Designer</SubType>
  59. <DependentUpon>ServerUI.cs</DependentUpon>
  60. </EmbeddedResource>
  61. <Compile Include="Properties\Resources.Designer.cs">
  62. <AutoGen>True</AutoGen>
  63. <DependentUpon>Resources.resx</DependentUpon>
  64. </Compile>
  65. <None Include="Properties\Settings.settings">
  66. <Generator>SettingsSingleFileGenerator</Generator>
  67. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  68. </None>
  69. <Compile Include="Properties\Settings.Designer.cs">
  70. <AutoGen>True</AutoGen>
  71. <DependentUpon>Settings.settings</DependentUpon>
  72. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  73. </Compile>
  74. <Compile Include="User.cs" />
  75. <Compile Include="UserCollection.cs" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <ProjectReference Include="..\SMBLibrary\SMBLibrary.csproj">
  79. <Project>{8D9E8F5D-FD13-4E4C-9723-A333DA2034A7}</Project>
  80. <Name>SMBLibrary</Name>
  81. </ProjectReference>
  82. <ProjectReference Include="..\Utilities\Utilities.csproj">
  83. <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
  84. <Name>Utilities</Name>
  85. </ProjectReference>
  86. </ItemGroup>
  87. <ItemGroup>
  88. <Content Include="Settings.xml">
  89. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  90. </Content>
  91. </ItemGroup>
  92. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  93. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  94. Other similar extension points exist, see Microsoft.Common.targets.
  95. <Target Name="BeforeBuild">
  96. </Target>
  97. <Target Name="AfterBuild">
  98. </Target>
  99. -->
  100. </Project>