Jint.Tests.PublicInterface.csproj 1.4 KB

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