16 lines
409 B
XML
16 lines
409 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<LangVersion>11</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GlaxArguments\GlaxArguments.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|