mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-06 09:48:40 +00:00
* Bump NUnit3TestAdapter from 4.5.0 to 4.6.0 Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.5.0 to 4.6.0. - [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases) - [Commits](https://github.com/nunit/nunit3-vs-adapter/compare/V4.5.0...V4.6.0) --- updated-dependencies: - dependency-name: NUnit3TestAdapter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Smaug123 <3138005+Smaug123@users.noreply.github.com>
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="NoAttribute.fs" />
|
|
<Compile Include="Inconclusive.fs" />
|
|
<Compile Include="RunSubProcess.fs" />
|
|
<Compile Include="TestNonParallel.fs" />
|
|
<Compile Include="TestParallel.fs" />
|
|
<Compile Include="TestStdout.fs" />
|
|
<Compile Include="TestParameterisedFixture.fs" />
|
|
<Compile Include="TestSetUp.fs" />
|
|
<Compile Include="TestValues.fs" />
|
|
<None Include="some-config.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<Compile Include="TestAppDomain.fs" />
|
|
<Compile Include="TestCaseData.fs" />
|
|
<Compile Include="TestNonStatic.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FsUnit" Version="6.0.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0"/>
|
|
<PackageReference Include="NUnit" Version="4.1.0"/>
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|