14 lines
324 B
XML
14 lines
324 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<LangVersion>8</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Commandline\Commandline.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|