SMBServer.csproj 921 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFrameworks>net20;net40;netcoreapp3.1</TargetFrameworks>
  5. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  6. <AssemblyName>SMBServer</AssemblyName>
  7. <RootNamespace>SMBServer</RootNamespace>
  8. <UseWindowsForms>true</UseWindowsForms>
  9. </PropertyGroup>
  10. <ItemGroup Condition=" '$(TargetFramework)' == 'net20' ">
  11. <Reference Include="System.Windows.Forms" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\SMBLibrary.Win32\SMBLibrary.Win32.csproj" />
  15. <ProjectReference Include="..\SMBLibrary\SMBLibrary.csproj" />
  16. <ProjectReference Include="..\Utilities\Utilities.csproj" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <None Update="Settings.xml">
  20. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  21. </None>
  22. </ItemGroup>
  23. </Project>