mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-08-02 05:51:49 +02:00
27 lines
1.3 KiB
XML
27 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AssemblyName>SMBLibrary</AssemblyName>
|
|
<Version>1.4.5</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/TalAloni/SMBLibrary</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/TalAloni/SMBLibrary</RepositoryUrl>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Utilities\Utilities.csproj" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="ILRepack" Condition="'$(Configuration)' == 'Release'" AfterTargets="AfterBuild">
|
|
<Exec Command=""$(ProgramW6432)\ILRepack\ILRepack.exe" /out="$(OutputPath)\SMBLibrary.dll" "$(OutputPath)\SMBLibrary.dll" "$(OutputPath)\Utilities.dll""></Exec>
|
|
</Target>
|
|
|
|
</Project>
|