Jint.Tests.PublicInterface.csproj 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net8.0</TargetFrameworks>
  4. <TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net472</TargetFrameworks>
  5. <IsPackable>false</IsPackable>
  6. <NoWarn>612</NoWarn>
  7. <SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\Jint\Jint.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Acornima.Extras" />
  14. <PackageReference Include="FluentAssertions" />
  15. <PackageReference Include="Flurl.Http.Signed" />
  16. <PackageReference Include="Microsoft.NET.Test.Sdk" />
  17. <PackageReference Include="MongoDB.Bson.signed" />
  18. <PackageReference Include="Newtonsoft.Json" />
  19. <PackageReference Include="NodaTime" />
  20. <PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" />
  21. <PackageReference Include="SourceMaps" />
  22. <PackageReference Include="System.Text.Json" Condition="!$([MSBuild]::IsTargetFrameworkCompatible($(TargetFramework), 'net8.0'))" />
  23. <PackageReference Include="xunit" />
  24. <PackageReference Include="xunit.runner.visualstudio" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Using Include="Xunit" />
  28. </ItemGroup>
  29. </Project>