SMBServer.csproj 3.9 KB

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