16 lines
397 B
XML
16 lines
397 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<RootNamespace>InterpreterGui</RootNamespace>
|
|
<AssemblyName>InterpreterGui</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Interpreter\Interpreter.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|