mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-08-04 06:51:50 +02:00
33 lines
1.4 KiB
XML
33 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<PackageId>Lansweeper.SMBLibrary</PackageId>
|
|
<TargetFrameworks>net48;netstandard2.0</TargetFrameworks>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AssemblyName>SMBLibrary</AssemblyName>
|
|
<Version>1.7.0</Version>
|
|
<NoWarn>1573;1591</NoWarn>
|
|
<RootNamespace>SMBLibrary</RootNamespace>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
<Authors>Tal Aloni</Authors>
|
|
<PackageDescription>SMBLibrary is an open-source C# SMB 1.0/CIFS, SMB 2.0, SMB 2.1 and SMB 3.0 server and client implementation</PackageDescription>
|
|
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/Lansweeper/SMBLibrary</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/Lansweeper/SMBLibrary</RepositoryUrl>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ILMerge" Version="3.0.41" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Utilities\Utilities.csproj" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
|
|
<Target Name="ILMerge" Condition="'$(Configuration)' == 'Release'" AfterTargets="AfterBuild">
|
|
<Exec Command=""$(ILMergeConsolePath)" /out:"$(OutputPath)\SMBLibrary.dll" "$(OutputPath)\SMBLibrary.dll" "$(OutputPath)\Utilities.dll""></Exec>
|
|
</Target>
|
|
|
|
</Project>
|