mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-03 00:03:19 +02:00
32 lines
No EOL
1 KiB
XML
32 lines
No EOL
1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFrameworks>net20;net40;netcoreapp3.1</TargetFrameworks>
|
|
<Copyright>Copyright © Tal Aloni 2014-2024</Copyright>
|
|
<AssemblyName>SMBServer</AssemblyName>
|
|
<Version>1.5.2</Version>
|
|
<RootNamespace>SMBServer</RootNamespace>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net20' ">
|
|
<Reference Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SMBLibrary.Win32\SMBLibrary.Win32.csproj" />
|
|
<ProjectReference Include="..\SMBLibrary\SMBLibrary.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(Configuration)' != 'Release'">
|
|
<ProjectReference Include="..\Utilities\Utilities.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Settings.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project> |