1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <AssemblyName>SMBLibrary</AssemblyName>
- <RootNamespace>SMBLibrary</RootNamespace>
- <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
- <Authors>Tal Aloni</Authors>
- <PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
- <PackageProjectUrl>https://github.com/TalAloni/SMBLibrary</PackageProjectUrl>
- <RepositoryUrl>https://github.com/TalAloni/SMBLibrary</RepositoryUrl>
- </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>
|