Archived
forked from RDTKEditor/RDTKEditor
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="Ollama" Version="1.15.1-dev.13" />
|
|
<PackageReference Include="RhythmBase" Version="1.2.0-beta1" />
|
|
<PackageReference Include="SkiaSharp.Views.WPF" Version="3.119.0-preview.1.2" />
|
|
<PackageReference Include="sly" Version="3.7.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="RhythmBase.Control.Core">
|
|
<HintPath>..\RhythmBase.Control.WPF\bin\Debug\net8.0-windows\RhythmBase.Control.Core.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="RhythmBase.Control.WPF">
|
|
<HintPath>..\RhythmBase.Control.WPF\bin\Debug\net8.0-windows\RhythmBase.Control.WPF.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="System.IO" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|