Jint.Tests.PublicInterface.csproj 1.3 KB

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