/PetaPoco/PetaPoco.csproj

http://github.com/toptensoftware/PetaPoco · MSBuild · 35 lines · 30 code · 5 blank · 0 comment · 3 complexity · 87d85b1af724a91ff8951657f0633541 MD5 · raw file

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net40;net45;netstandard2.0</TargetFrameworks>
  4. <AssemblyTitle>PetaPoco</AssemblyTitle>
  5. <Description>A Tiny ORMish thing for your POCO's.</Description>
  6. <Company>Collaborating Platypus</Company>
  7. <Product>PetaPoco</Product>
  8. <Copyright>Collaborating Platypus</Copyright>
  9. <PackageProjectUrl>https://github.com/CollaboratingPlatypus/PetaPoco</PackageProjectUrl>
  10. <PackageLicenseUrl>https://github.com/CollaboratingPlatypus/PetaPoco/blob/master/LICENSE.txt</PackageLicenseUrl>
  11. <RepositoryUrl>https://github.com/CollaboratingPlatypus/PetaPoco</RepositoryUrl>
  12. <PackageTags>Peta Poco Peta-Poco PetaPoco ORM-Micro Micro-ORM ORM ormmicro MVC MVC4 MVC5 MVC6 MySql Postgres MSSQL Database DAL SQL Easy</PackageTags>
  13. <PackageIconUrl>https://raw.githubusercontent.com/CollaboratingPlatypus/PetaPoco/master/Media/Logo2/PetaPocoLogo2Nuget.png</PackageIconUrl>
  14. <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
  15. <PackageId>PetaPoco.Compiled</PackageId>
  16. <DefineConstants Condition="'$(TargetFramework)' != 'net40'">ASYNC</DefineConstants>
  17. </PropertyGroup>
  18. <ItemGroup Condition="'$(TargetFramework)' != 'netstandard2.0'">
  19. <Reference Include="System.Configuration" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <None Update="T4 Templates\Database.tt">
  23. <Generator>TextTemplatingFileGenerator</Generator>
  24. </None>
  25. </ItemGroup>
  26. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
  27. <PackageReference Include="System.Reflection.Emit.ILGeneration" Version="4.3.0" />
  28. <PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />
  29. </ItemGroup>
  30. </Project>