SMBServer.csproj 3.9 KB

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