mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-09 11:08:40 +00:00
* Bump WoofWare.Myriad.Plugins.Attributes from 3.1.4 to 3.1.6 Bumps [WoofWare.Myriad.Plugins.Attributes](https://github.com/Smaug123/WoofWare.Myriad) from 3.1.4 to 3.1.6. - [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.1.4...WoofWare.Myriad.Plugins.Attributes.3.1.6) --- updated-dependencies: - dependency-name: WoofWare.Myriad.Plugins.Attributes dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump ApiSurface from 4.0.40 to 4.0.41 Bumps [ApiSurface](https://github.com/G-Research/ApiSurface) from 4.0.40 to 4.0.41. - [Release notes](https://github.com/G-Research/ApiSurface/releases) - [Commits](https://github.com/G-Research/ApiSurface/compare/ApiSurface.4.0.40...ApiSurface.4.0.41) --- updated-dependencies: - dependency-name: ApiSurface dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump fantomas from 6.3.7 to 6.3.9 Bumps [fantomas](https://github.com/fsprojects/fantomas) from 6.3.7 to 6.3.9. - [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.7...v6.3.9) --- 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.DotnetRuntimeLocator from 0.1.3 to 0.1.4 Bumps [WoofWare.DotnetRuntimeLocator](https://github.com/Smaug123/WoofWare.DotnetRuntimeLocator) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/Smaug123/WoofWare.DotnetRuntimeLocator/releases) - [Commits](https://github.com/Smaug123/WoofWare.DotnetRuntimeLocator/compare/WoofWare.DotnetRuntimeLocator.0.1.3...WoofWare.DotnetRuntimeLocator.0.1.4) --- updated-dependencies: - dependency-name: WoofWare.DotnetRuntimeLocator dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Deps --------- 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>
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="EmbeddedResource.fs" />
|
|
<Compile Include="TestFilter.fs" />
|
|
<Compile Include="TestList.fs" />
|
|
<Compile Include="TestSurface.fs" />
|
|
<Compile Include="TestTrx.fs" />
|
|
<EmbeddedResource Include="Example1.trx" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ApiSurface" Version="4.0.41" />
|
|
<PackageReference Include="FsCheck" Version="3.0.0-rc3" />
|
|
<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.5.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\TestRunner.Lib\TestRunner.Lib.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|