12345678910111213141516171819202122232425262728293031323334 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFrameworks>net462;net8.0</TargetFrameworks>
- <IsPackable>false</IsPackable>
- <NoWarn>612</NoWarn>
- <SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Jint\Jint.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Acornima.Extras" />
- <PackageReference Include="FluentAssertions" />
- <PackageReference Include="Flurl.Http.Signed" />
- <PackageReference Include="Microsoft.NET.Test.Sdk" />
- <PackageReference Include="MongoDB.Bson.signed" />
- <PackageReference Include="Newtonsoft.Json" />
- <PackageReference Include="NodaTime" />
- <PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" />
- <PackageReference Include="SourceMaps" />
- <PackageReference Include="System.Text.Json" Condition="!$([MSBuild]::IsTargetFrameworkCompatible($(TargetFramework), 'net8.0'))" />
- <PackageReference Include="xunit" />
- <PackageReference Include="xunit.runner.visualstudio" />
- </ItemGroup>
- <ItemGroup>
- <Using Include="Xunit" />
- </ItemGroup>
- </Project>
|