mirror of
https://github.com/Smaug123/WoofWare.PrattParser
synced 2025-10-06 18:08:43 +00:00
* Bump NUnit from 4.0.1 to 4.1.0 Bumps [NUnit](https://github.com/nunit/nunit) from 4.0.1 to 4.1.0. - [Release notes](https://github.com/nunit/nunit/releases) - [Changelog](https://github.com/nunit/nunit/blob/master/CHANGES.md) - [Commits](https://github.com/nunit/nunit/compare/v4.0.1...4.1.0) --- updated-dependencies: - dependency-name: NUnit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
822 B
XML
29 lines
822 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
<IsPublishable>false</IsPublishable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="TestLexer.fs"/>
|
|
<Compile Include="TestParser.fs"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FsUnit" Version="6.0.0"/>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0"/>
|
|
<PackageReference Include="NUnit" Version="4.1.0"/>
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PrattParser.Example\PrattParser.Example.fsproj" />
|
|
<ProjectReference Include="..\PrattParser\PrattParser.fsproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|