SMBLibrary.csproj 1.1 KB

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
  4. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  5. <AssemblyName>SMBLibrary</AssemblyName>
  6. <RootNamespace>SMBLibrary</RootNamespace>
  7. <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
  8. <Authors>Tal Aloni</Authors>
  9. <PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
  10. <PackageProjectUrl>https://github.com/TalAloni/SMBLibrary</PackageProjectUrl>
  11. <RepositoryUrl>https://github.com/TalAloni/SMBLibrary</RepositoryUrl>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\Utilities\Utilities.csproj" PrivateAssets="All" />
  15. </ItemGroup>
  16. <Target Name="ILRepack" Condition="'$(Configuration)' == 'Release'" AfterTargets="AfterBuild">
  17. <Exec Command="&quot;$(ProgramW6432)\ILRepack\ILRepack.exe&quot; /out=&quot;$(OutputPath)\SMBLibrary.dll&quot; &quot;$(OutputPath)\SMBLibrary.dll&quot; &quot;$(OutputPath)\Utilities.dll&quot;"></Exec>
  18. </Target>
  19. </Project>