SMBServer.csproj 996 B

12345678910111213141516171819202122232425262728293031
  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. </ItemGroup>
  17. <ItemGroup Condition="'$(Configuration)' != 'Release'">
  18. <ProjectReference Include="..\Utilities\Utilities.csproj" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <None Update="Settings.xml">
  22. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  23. </None>
  24. </ItemGroup>
  25. </Project>