mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-06 09:48:40 +00:00
* Bump FsUnit from 6.0.0 to 6.0.1 Bumps [FsUnit](https://github.com/fsprojects/FsUnit) from 6.0.0 to 6.0.1. - [Release notes](https://github.com/fsprojects/FsUnit/releases) - [Changelog](https://github.com/fsprojects/FsUnit/blob/master/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FsUnit/compare/6.0.0...6.0.1) --- updated-dependencies: - dependency-name: FsUnit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump fantomas from 6.3.12 to 6.3.15 Bumps [fantomas](https://github.com/fsprojects/fantomas) from 6.3.12 to 6.3.15. - [Release notes](https://github.com/fsprojects/fantomas/releases) - [Changelog](https://github.com/fsprojects/fantomas/blob/main/CHANGELOG.md) - [Commits](https://github.com/fsprojects/fantomas/compare/v6.3.12...v6.3.15) --- updated-dependencies: - dependency-name: fantomas dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump WoofWare.Myriad.Plugins.Attributes from 3.4.1 to 3.6.1 Bumps [WoofWare.Myriad.Plugins.Attributes](https://github.com/Smaug123/WoofWare.Myriad) from 3.4.1 to 3.6.1. - [Release notes](https://github.com/Smaug123/WoofWare.Myriad/releases) - [Changelog](https://github.com/Smaug123/WoofWare.Myriad/blob/main/CHANGELOG.md) - [Commits](https://github.com/Smaug123/WoofWare.Myriad/compare/WoofWare.Myriad.Plugins.Attributes.3.4.1...WoofWare.Myriad.Plugins.Attributes.3.6.1) --- updated-dependencies: - dependency-name: WoofWare.Myriad.Plugins.Attributes dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Deps * And WoofWare * And WoofWare --------- 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.1" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1"/>
|
|
<PackageReference Include="NUnit" Version="4.2.2"/>
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|