mirror of
https://github.com/Smaug123/dotnet-classical-ciphers
synced 2025-10-04 20:18:40 +00:00
30 lines
993 B
XML
30 lines
993 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.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.3.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
|
|
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
|
|
<PackageReference Include="coverlet.collector" Version="6.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CipherSuite\CipherSuite.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|