SMBLibrary.Win32.csproj 902 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
  4. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  5. <AssemblyName>SMBLibrary.Win32</AssemblyName>
  6. <RootNamespace>SMBLibrary.Win32</RootNamespace>
  7. <Authors>Tal Aloni</Authors>
  8. <PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
  9. <PackageProjectUrl>https://github.com/TalAloni/SMBLibrary</PackageProjectUrl>
  10. <RepositoryUrl>https://github.com/TalAloni/SMBLibrary</RepositoryUrl>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\SMBLibrary\SMBLibrary.csproj" />
  14. <ProjectReference Include="..\Utilities\Utilities.csproj" />
  15. </ItemGroup>
  16. <ItemGroup Condition="'$(Configuration)' != 'Release'">
  17. <ProjectReference Include="..\Utilities\Utilities.csproj" />
  18. </ItemGroup>
  19. </Project>