mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-07 02:08:40 +00:00
41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<PackAsTool>true</PackAsTool>
|
|
<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>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarnOn>FS3559</WarnOn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="AssemblyInfo.fs" />
|
|
<Compile Include="Array.fs" />
|
|
<Compile Include="List.fs" />
|
|
<Compile Include="Domain.fs" />
|
|
<Compile Include="Filter.fs" />
|
|
<Compile Include="SingleTestMethod.fs" />
|
|
<Compile Include="TestProgress.fs" />
|
|
<Compile Include="TestFixture.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.1.2" />
|
|
<PackageReference Update="FSharp.Core" Version="6.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|