25 lines
1010 B
XML
Executable File
25 lines
1010 B
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="18.0.0" />
|
|
<PackageReference Include="System.IO.Abstractions" Version="22.0.16" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MarketAlly.AIPlugin.Analysis\MarketAlly.AIPlugin.Analysis.csproj" />
|
|
<ProjectReference Include="..\MarketAlly.AIPlugin\MarketAlly.AIPlugin.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|