30 lines
821 B
XML
30 lines
821 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<UseWPF>true</UseWPF>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Remove="Test\llm.cs" />
|
|||
|
<Compile Remove="Test\merged.cs" />
|
|||
|
<Compile Remove="Test\original.cs" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Include="Test\llm.cs" />
|
|||
|
<None Include="Test\merged.cs" />
|
|||
|
<None Include="Test\original.cs" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="AvalonEdit" Version="6.3.0.90" />
|
|||
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
|
|||
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|