39 lines
1.9 KiB
XML
Executable File
39 lines
1.9 KiB
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.CodeAnalysis.Analyzers" Version="4.14.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.14.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="9.0.10" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MarketAlly.AIPlugin.Analysis\MarketAlly.AIPlugin.Analysis.csproj" />
|
|
<ProjectReference Include="..\MarketAlly.AIPlugin.Learning\MarketAlly.AIPlugin.Learning.csproj" />
|
|
<ProjectReference Include="..\MarketAlly.AIPlugin.Refactoring\MarketAlly.AIPlugin.Refactoring.csproj" />
|
|
<ProjectReference Include="..\..\RefactorIQ\src\RefactorIQ.Core\RefactorIQ.Core.csproj" />
|
|
<ProjectReference Include="..\..\RefactorIQ\src\RefactorIQ.Domain\RefactorIQ.Domain.csproj" />
|
|
<ProjectReference Include="..\..\RefactorIQ\src\RefactorIQ.Services\RefactorIQ.Services.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.Extensions.Hosting.Abstractions">
|
|
<HintPath>..\..\..\..\..\..\N\microsoft.extensions.hosting.abstractions\9.0.6\lib\net8.0\Microsoft.Extensions.Hosting.Abstractions.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|