forked from giacomelli/GeneticSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeneticSharp.Runner.ConsoleApp.csproj
28 lines (24 loc) · 1.18 KB
/
GeneticSharp.Runner.ConsoleApp.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<Import Project="..\msbuilds\GeneticSharp.dotnet-core.targets" />
<Import Project="..\msbuilds\GeneticSharp.common.targets" />
<Import Project="..\msbuilds\GeneticSharp.app.targets" />
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<OutputType>Exe</OutputType>
<RuntimeIdentifiers>win7-x86;osx-x64;linux-x64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="NCalc.NetCore" Version="1.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2-beta2" />
<PackageReference Include="Magick.NET-Q16-AnyCPU" Version="12.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GeneticSharp.Domain\GeneticSharp.Domain.csproj" />
<ProjectReference Include="..\GeneticSharp.Extensions\GeneticSharp.Extensions.csproj" />
<ProjectReference Include="..\GeneticSharp.Infrastructure.Framework\GeneticSharp.Infrastructure.Framework.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\GhostwriterQuotex.json.txt" />
</ItemGroup>
</Project>