mirror of
https://github.com/Smaug123/dotnet-classical-ciphers
synced 2025-10-06 21:18:43 +00:00
Bumps [NUnit.Analyzers](https://github.com/nunit/nunit.analyzers) from 3.5.0 to 3.6.0. - [Release notes](https://github.com/nunit/nunit.analyzers/releases) - [Changelog](https://github.com/nunit/nunit.analyzers/blob/master/CHANGES.txt) - [Commits](https://github.com/nunit/nunit.analyzers/compare/3.5.0...3.6.0) --- updated-dependencies: - dependency-name: NUnit.Analyzers dependency-type: direct:production update-type: version-update:semver-minor ... 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 <patrick+github@patrickstevens.co.uk>
30 lines
1022 B
XML
30 lines
1022 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="String.fs" />
|
|
<Compile Include="Examples.fs" />
|
|
<Compile Include="TestMonoalphabetic.fs" />
|
|
<Compile Include="TestCaesar.fs" />
|
|
<Compile Include="TestAffine.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FsUnit" Version="5.2.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.4.0" />
|
|
<PackageReference Include="NUnit.Analyzers" Version="3.6.0" />
|
|
<PackageReference Include="coverlet.collector" Version="3.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CipherSuite\CipherSuite.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|