mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-05 17:38:40 +00:00
* Bump FSharp.Core and WoofWare.Myriad.Plugins Bumps [FSharp.Core](https://github.com/dotnet/fsharp) and [WoofWare.Myriad.Plugins](https://github.com/Smaug123/WoofWare.Myriad). These dependencies needed to be updated together. Updates `FSharp.Core` from 6.0.1 to 6.0.1 - [Release notes](https://github.com/dotnet/fsharp/releases) - [Changelog](https://github.com/dotnet/fsharp/blob/main/release-notes.md) - [Commits](https://github.com/dotnet/fsharp/commits) Updates `WoofWare.Myriad.Plugins` from 4.0.14 to 7.0.7 - [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.4.0.14...WoofWare.Myriad.Plugins.7.0.7) --- updated-dependencies: - dependency-name: FSharp.Core dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: WoofWare.Myriad.Plugins dependency-version: 7.0.7 dependency-type: direct:production update-type: version-update:semver-major ... 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: Patrick Stevens <3138005+Smaug123@users.noreply.github.com>
68 lines
2.9 KiB
XML
68 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<Authors>Patrick Stevens</Authors>
|
|
<Copyright>Copyright (c) Patrick Stevens 2024</Copyright>
|
|
<Description>Library with primitives to allow you to run NUnit tests.</Description>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/Smaug123/unofficial-nunit-runner</RepositoryUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageTags>nunit;test;runner</PackageTags>
|
|
<PackageId>WoofWare.NUnitTestRunner.Lib</PackageId>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarnOn>FS3559</WarnOn>
|
|
<WoofWareMyriadPluginVersion>7.0.7</WoofWareMyriadPluginVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="AssemblyInfo.fs" />
|
|
<Compile Include="RuntimeConfig.fs" />
|
|
<Compile Include="GeneratedRuntimeConfig.fs">
|
|
<MyriadFile>RuntimeConfig.fs</MyriadFile>
|
|
<MyriadParams>
|
|
<RuntimeOptions>JsonParse</RuntimeOptions>
|
|
<RuntimeConfig>JsonParse</RuntimeConfig>
|
|
<FrameworkDescription>JsonParse</FrameworkDescription>
|
|
</MyriadParams>
|
|
</Compile>
|
|
<Compile Include="ParallelScope.fs" />
|
|
<Compile Include="DotnetRuntime.fs" />
|
|
<Compile Include="Array.fs" />
|
|
<Compile Include="List.fs" />
|
|
<Compile Include="Result.fs" />
|
|
<Compile Include="Domain.fs" />
|
|
<Compile Include="Filter.fs" />
|
|
<Compile Include="Args.fs" />
|
|
<Compile Include="ParallelQueue.fs" />
|
|
<Compile Include="SingleTestMethod.fs" />
|
|
<Compile Include="TestProgress.fs" />
|
|
<Compile Include="Context.fs" />
|
|
<Compile Include="TestFixture.fs" />
|
|
<Compile Include="Xml.fs" />
|
|
<Compile Include="TrxReport.fs" />
|
|
<Compile Include="CreateTrxReport.fs" />
|
|
<Compile Include="AssemblyLevelAttributes.fs" />
|
|
<None Include="..\README.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
<EmbeddedResource Include="SurfaceBaseline.txt" />
|
|
<EmbeddedResource Include="version.json" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="WoofWare.PrattParser" Version="0.2.4" />
|
|
<PackageReference Update="FSharp.Core" Version="6.0.1" />
|
|
<PackageReference Include="WoofWare.DotnetRuntimeLocator" Version="0.1.12" />
|
|
<PackageReference Include="Myriad.SDK" Version="0.8.3" PrivateAssets="all" />
|
|
<PackageReference Include="WoofWare.Myriad.Plugins" Version="$(WoofWareMyriadPluginVersion)" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<MyriadSdkGenerator Include="$(NuGetPackageRoot)/woofware.myriad.plugins/$(WoofWareMyriadPluginVersion)/lib/net6.0/WoofWare.Myriad.Plugins.dll" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|